From eba53406d4f8acea0412098bb3bcf947534f37e2 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 20 May 2004 10:42:05 +0000 Subject: [PATCH] Fixed typo of Vec3f to Vec2f --- include/osg/Vec2d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osg/Vec2d b/include/osg/Vec2d index 70194fedd..3a2a76f68 100644 --- a/include/osg/Vec2d +++ b/include/osg/Vec2d @@ -38,9 +38,9 @@ class Vec2d Vec2d(float x,float y) { _v[0]=x; _v[1]=y; } - inline Vec2d(const Vec2f& vec) { _v[0]=vec._v[0]; _v[1]=vec._v[1]} + inline Vec2d(const Vec2f& vec) { _v[0]=vec._v[0]; _v[1]=vec._v[1]; } - inline operator Vec3f() const { return Vec2f(_v[0],_v[1]);} + inline operator Vec2f() const { return Vec2f(_v[0],_v[1]);} inline bool operator == (const Vec2d& v) const { return _v[0]==v._v[0] && _v[1]==v._v[1]; }