Updated wrappers.

This commit is contained in:
Robert Osfield
2005-10-28 09:20:21 +00:00
parent 839f2058cc
commit 669bd46d97
2 changed files with 4 additions and 1 deletions

View File

@@ -49,7 +49,7 @@ BEGIN_OBJECT_REFLECTOR(osg::CameraView)
I_Method0(double, getFieldOfView);
I_Method1(void, setFieldOfViewMode, IN, osg::CameraView::FieldOfViewMode, mode);
I_Method0(osg::CameraView::FieldOfViewMode, getFieldOfViewMode);
I_Method1(void, setFocalLength, IN, double, FocalLength);
I_Method1(void, setFocalLength, IN, double, focalLength);
I_Method0(double, getFocalLength);
I_Method2(bool, computeLocalToWorldMatrix, IN, osg::Matrix &, matrix, IN, osg::NodeVisitor *, nv);
I_Method2(bool, computeWorldToLocalMatrix, IN, osg::Matrix &, matrix, IN, osg::NodeVisitor *, nv);

View File

@@ -107,6 +107,8 @@ BEGIN_OBJECT_REFLECTOR(osgTerrain::DataSet)
I_Method1(void, setArchive, IN, osgDB::Archive *, archive);
I_Method0(osgDB::Archive *, getArchive);
I_Method1(void, setDestinationName, IN, const std::string &, filename);
I_Method1(void, setDirectory, IN, const std::string &, directory);
I_Method0(const std::string &, getDirectory);
I_Method1(void, setDestinationTileBaseName, IN, const std::string &, basename);
I_Method0(const std::string &, getDestinationTileBaseName);
I_Method1(void, setDestinationTileExtension, IN, const std::string &, extension);
@@ -160,6 +162,7 @@ BEGIN_OBJECT_REFLECTOR(osgTerrain::DataSet)
I_ReadOnlyProperty(osg::Node *, DestinationRootNode);
I_Property(const std::string &, DestinationTileBaseName);
I_Property(const std::string &, DestinationTileExtension);
I_Property(const std::string &, Directory);
I_Property(osg::EllipsoidModel *, EllipsoidModel);
I_Property(osgTerrain::DataSet::GeometryType, GeometryType);
I_Property(osg::CoordinateSystemNode *, IntermediateCoordinateSystem);