Hi,

I have upgraded the vtp code to osg 3.6.3
Everything compiled and linked properly. However I still have some execution 
problems.

I just want to check if  the code below is coded properly

FQuat TransformExtension::GetOrient() const
{
        const osg::Matrix &xform = m_pTransform->getMatrix();
        osg::Quat q;

//      xform.get(q);   
// Replacing xform.get(q) 
// with
        q = xform.getRotate();

        return FQuat(q.x(), q.y(), q.z(), q.w());
}

... 

Thank you!

Cheers,
Herman

------------------
Read this topic online here:
http://forum.openscenegraph.org/viewtopic.php?p=75036#75036





_______________________________________________
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Reply via email to