24 lines
367 B
C
24 lines
367 B
C
#ifndef __GEOMETRY_H__
|
|
#define __GEOMETRY_H__
|
|
|
|
#include "basis.h"
|
|
|
|
#include "angle.h"
|
|
|
|
#include "vector2.h"
|
|
#include "vector3.h"
|
|
|
|
#include "matrixes.h"
|
|
#include "matrix2x2.h"
|
|
#include "matrix2x3.h"
|
|
#include "matrix3x2.h"
|
|
#include "matrix3x3.h"
|
|
|
|
#include "tangent.h"
|
|
|
|
#include "rotation3.h"
|
|
|
|
#include "quaternion.h"
|
|
#include "versor.h"
|
|
|
|
#endif
|