1
0
forked from 0ad/0ad
0ad/source/collada/Maths.h
2006-12-26 22:43:09 +00:00

11 lines
283 B
C++

#ifndef MATHS_H__
#define MATHS_H__
class FMMatrix44;
extern FMMatrix44 operator+ (const FMMatrix44& a, const FMMatrix44& b);
extern FMMatrix44 operator/ (const FMMatrix44& a, const float b);
extern FMMatrix44 QuatToMatrix(float x, float y, float z, float w);
#endif // MATHS_H__