-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathREADME
43 lines (29 loc) · 1.57 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
AUTHOR: Thomas Diewald
Date: 07.02.2013
last edited: 07.02.2013
author: www.thomasdiewald.com
blog-post: www.thomasdiewald.com/blog/?p=1488
source: github.com/diwi/Space_Partitioning_Octree_BVH
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
################################################################################
--------------------------------------------------------------------------------
Space Partitioning: Octree vs. BVH
--------------------------------------------------------------------------------
################################################################################
source code of my first experiments with space-partitioning techniques:
- Octree
- BVH
it was a study to compare performance and usage for raytracing/pathtracing.
most important for me was the traversing-performance for ray-triangle-intersection,
which i needed for the opencl-implementation.
in the end i decided to use the BVH for that, and so the octree functionality
might be not that "perfect".
a lot of things should/could be improved during building the data-structure.
at the moment it is way to slow for dynamic changes in the scene.
if you notice any errors, feel free to contact me.
for more information, i'd like to refer to my blog-post:
http://thomasdiewald.com/blog/?p=1488
thomas