pyembree

April 3, 2018 ยท View on GitHub

======== pyembree

Python Wrapper for Embree

Installation

You can install pyembree (and embree) via the conda-forge package.

.. code-block:: bash

$ conda install -c conda-forge pyembree

Suppressing errors

Creating multiple scenes produces some harmless error messages: :: ERROR CAUGHT IN EMBREE ERROR: Invalid operation ERROR MESSAGE: b'already initialized'

These can be suppressed with:

.. code-block:: python

import logging
logging.getLogger('pyembree').disabled = True