Moved osg::DOFTransform to osgSim::DOFTransform.

Fixed crash associated with .osg files which contain empty description fields.

From Sondra Inverson, added support to .ive plugin for osgSim::DOFTransform.
This commit is contained in:
Robert Osfield
2003-11-25 14:11:05 +00:00
parent 032909f8c7
commit 31c5528ffb
26 changed files with 246 additions and 203 deletions

View File

@@ -53,9 +53,9 @@ class OSGSIM_EXPORT LightPointNode : public osg::Node
void removeLightPoint(unsigned int pos);
LightPoint& getLightPoint(unsigned int pos) { return _lightPointList[pos]; }
LightPoint& getLightPoint(unsigned int pos) { return _lightPointList[pos]; }
const LightPoint& getLightPoint(unsigned int pos) const { return _lightPointList[pos]; }
const LightPoint& getLightPoint(unsigned int pos) const { return _lightPointList[pos]; }
void setLightPointList(const LightPointList& lpl) { _lightPointList=lpl; }