diff options
-rw-r--r-- | chroma/bvh/bvh.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chroma/bvh/bvh.py b/chroma/bvh/bvh.py index f2ef7df..e8c128b 100644 --- a/chroma/bvh/bvh.py +++ b/chroma/bvh/bvh.py @@ -232,7 +232,7 @@ class BVHLayerSlice(object): def area_fixed(self): '''Return the surface area of all the nodes in this layer in fixed point units.''' - node_area(self.nodes) + return node_area(self.nodes) def area(self): '''Return the surface area of all the nodes in this layer in world |