Added a new osgDB::appendPlatformSpecificLibraryFilePaths() method to FileUtils.cpp

Includes a new OSX code from Eric Wing
This commit is contained in:
Robert Osfield
2004-08-27 16:14:21 +00:00
parent 79bcd892bd
commit 255c27d552
6 changed files with 416 additions and 111 deletions

View File

@@ -495,7 +495,7 @@ osg::Vec3 Model::computeNormal(const Element& element) const
bool Model::needReverse(const Element& element) const
{
if (element.normalIndices.empty()) return true;
if (element.normalIndices.empty()) return false;
return computeNormal(element)*averageNormal(element) < 0.0f;
}