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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user