Skip to main content

Ray queries on triangular meshes.

Reason this release was yanked:

Accidentially released from a forked repo

Project description

DOI Build Status

python-embree

This library is a thin wrapper around Embree 3.

As much as possible, it tries to emulate the C API usage. The main point of this is to avoid creating a new API which would obfuscate the usage of the C API. Ideally, it should be easy to read the Embree documentation or examples, and translate things straightforwardly to equivalent Python code.

A secondary goal is to provide easy interoperability with numpy.

NOTE: very little of the library is wrapped so far, but this library is being developed in a way that should make it as easy as possible to wrap more functionality as necessary. If you find that a function that you'd like to use isn't wrapped, please create an issue or feel free to wrap it on your own and submit a pull request.

Installation

Windows

If you install Embree using the MSI from Embree's website, the Embree binaries, headers, and libraries will all be installed to C:\Program Files\Intel\Embree3 by default.

As an example, to compile using MSYS2 from the MinGW 64-bit console, after cding to the root directory of this repository, it should be possible to run:

$ python setup.py build_ext -I/c/Program\ Files/Intel/Embree3/include -L /c/Program\ Files/Intel/Embree3/lib
$ python setup.py install

to successfully compile and install python-embree.

Tips and tricks

Retain and release

The underlying Embree library uses reference counting to properly clean up resources used by the different types it provides (RTCDevice, RTCScene, etc.). This means that each type exposes a pair of "retain" and "release" functions: e.g., rtcRetainDevice, and rtcReleaseDevice. How to use these correctly is spelled out in the Embree API docs and the many Embree tutorials. Please consult these when using python-embree. The classes providing a lightweight object-oriented wrapper around Embree's types do not call any retain or release functions behind the scenes: this is the user's responsibility.

Parallelism

Using multiprocessing for concurrency in Python requires objects that are put into queues to be serialized using pickle. Unfortunately, it is not currently possible to serialize the Embree data structures (see the Embree repository's issues #137 and #238), and there do not appear to be plans to support this feature. The rationale for not supporting this feature is that building the Embree BVH from scratch is usually faster than reading the equivalent amount of data from disk.

This means that you will not be able to use any of the extensions classes exported by embree.pyx (such as embree.Device, embree.Scene, etc.) with multiprocessing directly. To get around this problem, a simple fix is to wrap a bit of Embree functionality in a Python class with its own __reduce__ method. For an example, see the implementation of TrimeshShapeModel here.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

embree-4.1.0-cp311-cp311-win_amd64.whl (12.5 MB view hashes)

Uploaded CPython 3.11 Windows x86-64

embree-4.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (13.8 MB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.28+ x86-64

embree-4.1.0-cp310-cp310-win_amd64.whl (12.5 MB view hashes)

Uploaded CPython 3.10 Windows x86-64

embree-4.1.0-cp310-cp310-manylinux_2_28_x86_64.whl (13.8 MB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

embree-4.1.0-cp39-cp39-win_amd64.whl (12.5 MB view hashes)

Uploaded CPython 3.9 Windows x86-64

embree-4.1.0-cp39-cp39-manylinux_2_28_x86_64.whl (13.8 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

embree-4.1.0-cp38-cp38-win_amd64.whl (12.5 MB view hashes)

Uploaded CPython 3.8 Windows x86-64

embree-4.1.0-cp38-cp38-manylinux_2_28_x86_64.whl (13.8 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.28+ x86-64

embree-4.1.0-cp37-cp37m-win_amd64.whl (12.5 MB view hashes)

Uploaded CPython 3.7m Windows x86-64

embree-4.1.0-cp37-cp37m-manylinux_2_28_x86_64.whl (13.7 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.28+ x86-64

embree-4.1.0-cp36-cp36m-win_amd64.whl (12.6 MB view hashes)

Uploaded CPython 3.6m Windows x86-64

embree-4.1.0-cp36-cp36m-manylinux_2_28_x86_64.whl (13.7 MB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.28+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page