Changed the minium tri strip length to 2 rather than 0.

This commit is contained in:
Robert Osfield
2003-12-05 22:42:02 +00:00
parent 3f14b9a653
commit 75174c1be1

View File

@@ -35,7 +35,7 @@ class OSGUTIL_EXPORT TriStripVisitor : public osg::NodeVisitor
TriStripVisitor() :
osg::NodeVisitor( osg::NodeVisitor::TRAVERSE_ALL_CHILDREN ),
_cacheSize( 24 ),
_minStripSize( 0 )
_minStripSize( 2 )
{}
/** Convert mesh primitives in Geometry into Tri Strips.