Changeset 520
- Timestamp:
- 09/24/10 11:35:20 (20 months ago)
- File:
-
- 1 edited
-
trunk/avango-osg/python/avango/osg/OSGNode.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/avango-osg/python/avango/osg/OSGNode.cpp
r515 r520 36 36 #include <osg/ComputeBoundsVisitor> 37 37 38 #include <osgDB/WriteFile> 39 38 40 39 41 using namespace boost::python; … … 59 61 return cbbv.getBoundingBox(); 60 62 } 63 64 void WriteNodeFile(av::osg::Node * node, std::string filename) 65 { 66 osgDB::writeNodeFile(*(node->getOsgNode()),filename); 67 } 68 61 69 } 62 70 … … 76 84 77 85 def("calc_bounding_box", CalcBoundingBox); 86 def("write_node_file", WriteNodeFile); 78 87 }
Note: See TracChangeset
for help on using the changeset viewer.
