Added missing header for new matric reading and writing methods.

This commit is contained in:
Robert Osfield 2003-01-10 16:56:39 +00:00
parent f36bc69c58
commit f790d1ff15

View File

@ -0,0 +1,13 @@
#ifndef DOTOSG_MATRIX
#define DOTOSG_MATRIX
#include <osg/Matrix>
#include <osgDB/Input>
#include <osgDB/Output>
extern bool readMatrix(osg::Matrix& matrix, osgDB::Input& fr);
extern bool writeMatrix(const osg::Matrix& matrix, osgDB::Output& fw);
#endif