2016-08-29 22:31:11 +02:00
|
|
|
#ifndef MESHUP_CONFIG_H
|
|
|
|
#define MESHUP_CONFIG_H
|
|
|
|
|
|
|
|
#include "SimpleMath/SimpleMath.h"
|
|
|
|
#include "SimpleMath/SimpleMathGL.h"
|
|
|
|
#include "SimpleMath/SimpleMathMap.h"
|
|
|
|
|
2017-01-03 22:47:17 +01:00
|
|
|
typedef SimpleMath::Fixed::Matrix<float, 2, 1> Vector2f;
|
|
|
|
typedef SimpleMath::Fixed::Matrix<float, 2, 2> Matrix22f;
|
2016-08-29 22:31:11 +02:00
|
|
|
|
2017-01-03 22:47:17 +01:00
|
|
|
typedef SimpleMath::Fixed::Matrix<float, 3, 1> Vector3f;
|
|
|
|
typedef SimpleMath::Fixed::Matrix<float, 3, 3> Matrix33f;
|
2016-08-29 22:31:11 +02:00
|
|
|
|
2017-01-03 22:47:17 +01:00
|
|
|
typedef SimpleMath::Fixed::Matrix<float, 4, 1> Vector4f;
|
|
|
|
typedef SimpleMath::Fixed::Matrix<float, 4, 4> Matrix44f;
|
2016-08-29 22:31:11 +02:00
|
|
|
|
2017-01-03 22:47:17 +01:00
|
|
|
typedef SimpleMath::GL::Quaternion Quaternion;
|
2016-08-29 22:31:11 +02:00
|
|
|
|
2017-01-03 22:47:17 +01:00
|
|
|
typedef SimpleMath::Dynamic::Matrix<float> VectorNf;
|
|
|
|
typedef SimpleMath::Dynamic::Matrix<float> MatrixNNf;
|
2016-08-29 22:31:11 +02:00
|
|
|
|
|
|
|
#endif
|