diff --git a/src/osgPlugins/lwo/Object.cpp b/src/osgPlugins/lwo/Object.cpp index 20216a2df..00bb3ecf5 100644 --- a/src/osgPlugins/lwo/Object.cpp +++ b/src/osgPlugins/lwo/Object.cpp @@ -18,6 +18,7 @@ using namespace lwosg; namespace { +#if 0 bool triangle_is_clockwise(const osg::Vec3Array *points, int a, int b, int c) { const osg::Vec3 &A = (*points)[a]; @@ -29,6 +30,7 @@ namespace area2 += C.x() * A.y() - A.x() * C.y(); return area2 < 0; } +#endif float cylindrical_angle(float x, float y) {