Reordered KdLeaf/KdNode so that the first element to be accessed is first in the data structure

This commit is contained in:
Robert Osfield
2008-07-09 19:41:36 +00:00
parent c41ca3d6a0
commit 7be3d1ae02

View File

@@ -86,10 +86,10 @@ class OSG_EXPORT KdTree : public osg::Shape
first(f),
second(s) {}
osg::BoundingBox bb;
value_type first;
value_type second;
osg::BoundingBox bb;
};
@@ -103,10 +103,10 @@ class OSG_EXPORT KdTree : public osg::Shape
first(f),
second(s) {}
osg::BoundingBox bb;
value_type first;
value_type second;
osg::BoundingBox bb;
};
struct Triangle