You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also install the Intel® Threading Building Blocks (TBB) using `apt-get`:
154
154
@@ -174,20 +174,20 @@ the tutorials to start them.
174
174
175
175
To uninstall Embree, just execute the following:
176
176
177
-
sudo rpm --erase embree-lib-3.2.0-1.x86_64
178
-
sudo rpm --erase embree-devel-3.2.0-1.noarch
179
-
sudo rpm --erase embree-examples-3.2.0-1.x86_64
177
+
sudo rpm --erase embree3-lib-3.2.1-1.x86_64
178
+
sudo rpm --erase embree3-devel-3.2.1-1.noarch
179
+
sudo rpm --erase embree3-examples-3.2.1-1.x86_64
180
180
181
181
Linux tar.gz Files
182
182
------------------
183
183
184
184
The Linux version of Embree is also delivered as a `tar.gz` file:
185
-
[embree-3.2.0.x86_64.linux.tar.gz](https://github.com/embree/embree/releases/download/v3.2.0/embree-3.2.0.x86_64.linux.tar.gz). Unpack this file using `tar` and source the provided `embree-vars.sh` (if you
185
+
[embree-3.2.1.x86_64.linux.tar.gz](https://github.com/embree/embree/releases/download/v3.2.1/embree-3.2.1.x86_64.linux.tar.gz). Unpack this file using `tar` and source the provided `embree-vars.sh` (if you
186
186
are using the bash shell) or `embree-vars.csh` (if you are using the
187
187
C shell) to set up the environment properly:
188
188
189
-
tar xzf embree-3.2.0.x64.linux.tar.gz
190
-
source embree-3.2.0.x64.linux/embree-vars.sh
189
+
tar xzf embree-3.2.1.x86_64.linux.tar.gz
190
+
source embree-3.2.1.x86_64.linux/embree-vars.sh
191
191
192
192
If you want to ship Embree with your application, best use the Embree
193
193
version provided in the `tar.gz` file.
@@ -200,7 +200,7 @@ macOS PKG Installer
200
200
201
201
To install the Embree library on your macOS system use the
202
202
provided package installer inside
203
-
[embree-3.2.0.x86_64.dmg](https://github.com/embree/embree/releases/download/v3.2.0/embree-3.2.0.x86_64.dmg). This
203
+
[embree-3.2.1.x86_64.dmg](https://github.com/embree/embree/releases/download/v3.2.1/embree-3.2.1.x86_64.dmg). This
204
204
will install Embree by default into `/opt/local/lib` and
205
205
`/opt/local/include` directories. The Embree tutorials are installed
206
206
into the `/Applications/Embree3` directory.
@@ -222,12 +222,12 @@ macOS tar.gz file
222
222
-----------------
223
223
224
224
The macOS version of Embree is also delivered as a `tar.gz` file:
225
-
[embree-3.2.0.x86_64.macosx.tar.gz](https://github.com/embree/embree/releases/download/v3.2.0/embree-3.2.0.x86_64.macosx.tar.gz). Unpack this file using `tar` and source the provided `embree-vars.sh` (if you
225
+
[embree-3.2.1.x86_64.macosx.tar.gz](https://github.com/embree/embree/releases/download/v3.2.1/embree-3.2.1.x86_64.macosx.tar.gz). Unpack this file using `tar` and source the provided `embree-vars.sh` (if you
226
226
are using the bash shell) or `embree-vars.csh` (if you are using the
227
227
C shell) to set up the environment properly:
228
228
229
-
tar xzf embree-3.2.0.x64.macosx.tar.gz
230
-
source embree-3.2.0.x64.macosx/embree-vars.sh
229
+
tar xzf embree-3.2.1.x64.macosx.tar.gz
230
+
source embree-3.2.1.x64.macosx/embree-vars.sh
231
231
232
232
If you want to ship Embree with your application, please use the Embree
233
233
library of the provided `tar.gz` file. The library name of that Embree
@@ -546,6 +546,13 @@ parameters that can be configured in CMake:
546
546
+`EMBREE_GEOMETRY_USER`: Enables support for user defined geometries
547
547
(ON by default).
548
548
549
+
+`EMBREE_CURVE_SELF_INTERSECTION_AVOIDANCE_FACTOR`: Specifies a
550
+
factor that controls the self intersection avoidance feature for flat
551
+
curves. Flat curve intersections which are closer than
552
+
curve_radius*`EMBREE_CURVE_SELF_INTERSECTION_AVOIDANCE_FACTOR` to
553
+
the ray origin are ignored. A value of 0.0f disables self
554
+
intersection avoidance while 2.0f is the default value.
555
+
549
556
550
557
Using Embree
551
558
=============
@@ -1968,6 +1975,7 @@ CMake variable must be set to the following folder of the Embree
1968
1975
installation: `C:\Program Files\Intel\Embree3`.
1969
1976
1970
1977
[Embree API]: #embree-api
1978
+
[Embree Tutorials]: #embree-tutorials
1971
1979
[Ray Layout]: #ray-layout
1972
1980
[Extending the Ray Structure]: #extending-the-ray-structure
1973
1981
[Embree Example Renderer]: https://embree.github.io/renderer.html
0 commit comments