Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 511 Bytes

README.rst

File metadata and controls

29 lines (20 loc) · 511 Bytes

pyembree

Python Wrapper for Embree

Installation

You can install pyembree (and embree) via pip

$ pip install 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:

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