Fixes for Mac OS X

This commit is contained in:
Don BURNS
2003-03-13 06:22:31 +00:00
parent 693a889ece
commit ec3e1dc611
11 changed files with 20 additions and 17 deletions

View File

@@ -136,7 +136,7 @@ class Vec2
/// Length of the vector = sqrt( vec . vec )
inline float length() const
{
return sqrtf( _v[0]*_v[0] + _v[1]*_v[1] );
return sqrt( _v[0]*_v[0] + _v[1]*_v[1] );
}
/// Length squared of the vector = vec . vec

View File

@@ -55,7 +55,7 @@ class OSGDB_EXPORT Field
REAL,
INTEGER,
BLANK,
UNINTIALISED
UNINITIALISED
};
FieldType getFieldType() const;