OpenSceneGraph/include
Robert Osfield 1baffa3a77 Addition of the following methods:
/** Set the object-space reference radius of the volume enclosed by the PagedLOD.
          * Used to detmine the bounding sphere of the PagedLOD in the absense of any children.*/
        inline void setRadius(float radius) { _radius = radius; }

        /** Get the object-space radius of the volume enclosed by the PagedLOD.*/
        inline float getRadius() const { return _radius; }


        /** Set the number of children that the PagedLOD must keep around, even if thay are older than their expiry time.*/
        inline void setNumChildrenThatCannotBeExpired(unsigned int num) { _numChildrenThatCannotBeExpired = num; }

        /** Get the number of children that the PagedLOD must keep around, even if thay are older than their expiry time.*/
        unsigned int getNumChildrenThatCannotBeExpired() const { return _numChildrenThatCannotBeExpired; }
2003-12-09 12:08:27 +00:00
..
osg Addition of the following methods: 2003-12-09 12:08:27 +00:00
osgDB Added get() method to ReaderWriterProxy class to allow the readerwriter to 2003-12-09 12:07:41 +00:00
osgFX Standardised the tabbing so that 4 spaces are used instead of hardware tabs. 2003-11-27 22:06:11 +00:00
osgGA *** empty log message *** 2003-10-27 16:07:21 +00:00
osgGL2 From Mike Weiblen, added support for OpenGL SL to osgFX::Cartoon. 2003-10-05 11:42:26 +00:00
osgParticle Fixes from Marco. 2003-09-06 11:07:05 +00:00
osgProducer Added optional TraversalMask paramter to computeIntersections() methods. 2003-12-04 09:43:34 +00:00
osgSim Fixes for Win32 build. 2003-12-05 14:39:09 +00:00
osgTerrain Early development work on osgTerrain. 2003-11-25 19:42:35 +00:00
osgText Fixes for optional compile of GL_LUMINANCE_ALPHA and GL_ALPHA texture usage 2003-12-09 12:04:14 +00:00
osgUtil Moved the responsibility for finding file to load on to the ReaderWriter plugins, 2003-12-08 11:24:43 +00:00