]> git.mxchange.org Git - simgear.git/blobdiff - simgear/scene/bvh/BVHBoundingBoxVisitor.hxx
Remove using std:: from the metar header, remove HTTP support, add very basic unit...
[simgear.git] / simgear / scene / bvh / BVHBoundingBoxVisitor.hxx
index 8fc9db9ffc95f8d2a1aec94c2bfb613f56d641a7..d37779c367b519fde3374bccd3f7ef056354b853 100644 (file)
@@ -30,7 +30,6 @@
 #include "BVHStaticData.hxx"
 
 #include "BVHStaticNode.hxx"
-#include "BVHStaticLeaf.hxx"
 #include "BVHStaticTriangle.hxx"
 #include "BVHStaticBinary.hxx"
 #include "BVHStaticGeometry.hxx"
@@ -57,8 +56,6 @@ public:
     
     virtual void apply(const BVHStaticBinary& node, const BVHStaticData& data)
     { expandBy(node.getBoundingBox()); }
-    virtual void apply(const BVHStaticLeaf& node, const BVHStaticData& data)
-    { expandBy(node.computeBoundingBox(data)); }
     virtual void apply(const BVHStaticTriangle& node, const BVHStaticData& data)
     { expandBy(node.computeBoundingBox(data)); }