]> git.mxchange.org Git - simgear.git/blobdiff - simgear/bvh/BVHBoundingBoxVisitor.hxx
Tweak HTTP code to always sleep.
[simgear.git] / simgear / bvh / BVHBoundingBoxVisitor.hxx
index d37779c367b519fde3374bccd3f7ef056354b853..c14ff9c26991d18d9ac73c3b54b4bab9fc0d8438 100644 (file)
@@ -23,6 +23,7 @@
 #include "BVHVisitor.hxx"
 #include "BVHNode.hxx"
 #include "BVHGroup.hxx"
+#include "BVHPageNode.hxx"
 #include "BVHTransform.hxx"
 #include "BVHMotionTransform.hxx"
 #include "BVHLineGeometry.hxx"
@@ -45,6 +46,8 @@ public:
     
     virtual void apply(BVHGroup& node)
     { expandBy(node.getBoundingSphere()); }
+    virtual void apply(BVHPageNode& node)
+    { expandBy(node.getBoundingSphere()); }
     virtual void apply(BVHTransform& node)
     { expandBy(node.getBoundingSphere()); }
     virtual void apply(BVHMotionTransform& node)