Changeset 25
- Timestamp:
- 01/23/07 03:35:41 (2 years ago)
- Files:
-
- trunk/pyosg/osgUtil/Tesselator.cpp (modified) (2 diffs)
- trunk/pyosg/osgUtil/Tessellator.cpp (added)
- trunk/pyosg/osgUtil/osgUtil.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/pyosg/osgUtil/Tesselator.cpp
r3 r25 1 #include <osg/Version> 2 #if ((OSG_VERSION_MAJOR==1) && (OSG_VERSION_MINOR < 3)) 1 3 // Copyright (C) 2002-2003 Gideon May (gideon@computer.org) 2 4 // … … 108 110 } 109 111 } 112 #endif //#if ((OSG_VERSION_MAJOR==1) & (OSG_VERSION_MINOR < 3)) trunk/pyosg/osgUtil/osgUtil.cpp
r3 r25 10 10 // and with no claim as to its suitability for any purpose. 11 11 // 12 // TODO : IntersectVisitor, Tessel ator12 // TODO : IntersectVisitor, Tessellator 13 13 14 14 #include <boost/python/module.hpp> … … 16 16 17 17 #include <osgUtil/Version> 18 #include <osg/Version> 18 19 19 20 using namespace boost::python; … … 33 34 void init_SceneView(); 34 35 void init_SmoothingVisitor(); 36 #if ((OSG_VERSION_MAJOR==1) && (OSG_VERSION_MINOR < 3)) 35 37 void init_Tesselator(); 38 #else 39 void init_Tessellator(); 40 #endif 36 41 void init_TransformCallback(); 37 42 void init_UpdateVisitor(); … … 60 65 init_SceneView(); 61 66 init_SmoothingVisitor(); 67 #if ((OSG_VERSION_MAJOR==1) && (OSG_VERSION_MINOR < 3)) 62 68 init_Tesselator(); 69 #else 70 init_Tessellator(); 71 #endif 63 72 init_TransformCallback(); 64 73 init_UpdateVisitor();
