معرفی شرکت ها


embree-0.0.4


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Ray queries on triangular meshes.
ویژگی مقدار
سیستم عامل -
نام فایل embree-0.0.4
نام embree
نسخه کتابخانه 0.0.4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده -
ایمیل نویسنده -
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/embree/
مجوز -
[![DOI](https://zenodo.org/badge/194721283.svg)](https://zenodo.org/badge/latestdoi/194721283) [![Build Status](https://app.travis-ci.com/sampotter/python-embree.svg?branch=master)](https://app.travis-ci.com/sampotter/python-embree) # 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 `cd`ing 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](https://www.embree.org/api.html) and the [many Embree tutorials](https://www.embree.org/tutorials.html). Please consult these when using [python-embree](https://github.com/sampotter/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](https://docs.python.org/3/library/multiprocessing.html) for concurrency in Python requires objects that are put into queues to be serialized using [pickle](https://docs.python.org/3/library/pickle.html). Unfortunately, it is not currently possible to serialize the Embree data structures (see the Embree repository's issues [#137](https://github.com/embree/embree/issues/137) and [#238](https://github.com/embree/embree/issues/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](https://github.com/sampotter/python-embree/blob/master/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](https://github.com/sampotter/python-flux/blob/master/flux/shape.py).


نیازمندی

مقدار نام
- numpy


نحوه نصب


نصب پکیج whl embree-0.0.4:

    pip install embree-0.0.4.whl


نصب پکیج tar.gz embree-0.0.4:

    pip install embree-0.0.4.tar.gz