diff options
author | Stan Seibert <stan@mtrr.org> | 2012-02-06 21:40:42 -0500 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2021-05-09 08:42:38 -0700 |
commit | 9ee0ada34e872267fa10b38e9b7c09e96c4d81fa (patch) | |
tree | 3b48113481adaf72f5ab79fd88bf0f56dcc56a7d /test | |
parent | 26e02e52dc0e5f1a05c5deb9d689e548db2ef887 (diff) | |
download | chroma-9ee0ada34e872267fa10b38e9b7c09e96c4d81fa.tar.gz chroma-9ee0ada34e872267fa10b38e9b7c09e96c4d81fa.tar.bz2 chroma-9ee0ada34e872267fa10b38e9b7c09e96c4d81fa.zip |
Redo node format to include number of children, rather than just leaf bit.
Diffstat (limited to 'test')
-rw-r--r-- | test/test_bvh.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_bvh.py b/test/test_bvh.py index b90b108..f27348b 100644 --- a/test/test_bvh.py +++ b/test/test_bvh.py @@ -83,7 +83,7 @@ def create_bvh(): nodes['w'][layer] = [ 0x00000001 ] layer_offsets = list(layer_bounds[:-1]) # trim last entry - bvh = BVH(degree=degree, world_coords=world_coords, + bvh = BVH(world_coords=world_coords, nodes=nodes, layer_offsets=layer_offsets) return bvh |