diff options
author | Stan Seibert <stan@mtrr.org> | 2012-02-06 11:12:29 -0500 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2021-05-09 08:42:38 -0700 |
commit | 82c5b61619cc707d907bc598b7b82633d0059934 (patch) | |
tree | 5a63ffab2a61a7988c225944d943d6b14a012534 | |
parent | 9962e85cfd44700a815b474cfe9aac30a38c5ec2 (diff) | |
download | chroma-82c5b61619cc707d907bc598b7b82633d0059934.tar.gz chroma-82c5b61619cc707d907bc598b7b82633d0059934.tar.bz2 chroma-82c5b61619cc707d907bc598b7b82633d0059934.zip |
Missing return in function
-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 |