Added new Matrixf and Matrixd implementations.

Made Matrix be a typedef to either Matrixf or Matrixd.  Defaults to Matrixf.

Converted the osgGA::MatrixManipulators and osgProducer::Viewer/OsgCameraGroup
across to using exclusively Matrixd for internal computations and passing betwen
Manipulators, Producer and SceneView. Note, SceneView still uses Matrix internally
so will depend on what is set as the default in include/osg/Matrix.

Added the ability to osgProducer::setDone/getDone(), kept done() as the
method that the viewer main loop uses for detecting the exit condition.
This commit is contained in:
Robert Osfield
2003-09-05 22:35:34 +00:00
parent a2834d74d2
commit 792bba05b9
23 changed files with 203 additions and 129 deletions

View File

@@ -12,9 +12,26 @@
*/
#include <osg/Matrixd>
#include <osg/Matrixf>
// specialise Matrix_implementaiton to be Matrixd
#define Matrix_implementation Matrixd
osg::Matrixd::Matrixd( const osg::Matrixf& mat )
{
set(mat.ptr());
}
osg::Matrixd& osg::Matrixd::operator = (const osg::Matrixf& rhs)
{
set(rhs.ptr());
return *this;
}
void osg::Matrixd::set(const osg::Matrixf& rhs)
{
set(rhs.ptr());
}
// now compile up Matrix via Matrix_implementation
#include "Matrix_implementation.cpp"