Renamed osg::Matric::makeIdent() to osg::Matrix::makeIdentity() to make
it consistent with the rest of the osg::Matrix naming. Updated OSG distribution to account for new name. Added support for the STATIC/DYNAMIC osg::Transform::Type to the .osg ASCII reader/writer plugin and the flt reader plugin. Removed the non cost version of osg::Transform::getMatrix() as this could by pass the dirty mechinism.
This commit is contained in:
@@ -95,7 +95,7 @@ void Matrix::setTrans( const Vec3& v )
|
||||
_mat[3][2] = v[2];
|
||||
}
|
||||
|
||||
void Matrix::makeIdent()
|
||||
void Matrix::makeIdentity()
|
||||
{
|
||||
SET_ROW(0, 1, 0, 0, 0 )
|
||||
SET_ROW(1, 0, 1, 0, 0 )
|
||||
|
||||
Reference in New Issue
Block a user