From 82c5b61619cc707d907bc598b7b82633d0059934 Mon Sep 17 00:00:00 2001 From: Stan Seibert Date: Mon, 6 Feb 2012 11:12:29 -0500 Subject: Missing return in function --- chroma/bvh/bvh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit