From 31a664a24d235dda7a0049e48ddc066b8fa109a7 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sun, 25 Jul 2004 18:46:20 +0000 Subject: [PATCH] Changed value_type back to being a float. --- include/osg/Matrixf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osg/Matrixf b/include/osg/Matrixf index d42550b6e..83ebfc486 100644 --- a/include/osg/Matrixf +++ b/include/osg/Matrixf @@ -35,7 +35,7 @@ class SG_EXPORT Matrixf public: - typedef double value_type; + typedef float value_type; inline Matrixf() { makeIdentity(); } inline Matrixf( const Matrixf& mat) { set(mat.ptr()); }