From f790d1ff15167e83970892d7caee8f9a8178d4ca Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 10 Jan 2003 16:56:39 +0000 Subject: [PATCH] Added missing header for new matric reading and writing methods. --- src/osgPlugins/osg/Matrix.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/osgPlugins/osg/Matrix.h diff --git a/src/osgPlugins/osg/Matrix.h b/src/osgPlugins/osg/Matrix.h new file mode 100644 index 000000000..25afdbb0d --- /dev/null +++ b/src/osgPlugins/osg/Matrix.h @@ -0,0 +1,13 @@ +#ifndef DOTOSG_MATRIX +#define DOTOSG_MATRIX + +#include + +#include +#include + +extern bool readMatrix(osg::Matrix& matrix, osgDB::Input& fr); + +extern bool writeMatrix(const osg::Matrix& matrix, osgDB::Output& fw); + +#endif