This commit is contained in:
Daveo 2000-12-04 16:58:10 +00:00
parent 2a24119501
commit 79caf039ef
19 changed files with 3844 additions and 0 deletions

View file

@ -0,0 +1,22 @@
#ifndef __AXISANGLE_H__
#define __AXISANGLE_H__
#include "mathtypes.h"
class Quaternion;
struct Matrix4x4;
class AxisAngle
{
public:
real x,y,z;
real angle;
void ToQuaternion( Quaternion &q ) const;
void ToMatrix( Matrix4x4 &m ) const;
};
#endif