21 lines
379 B
C
21 lines
379 B
C
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license BSD v3 (see license file)
|
|
*/
|
|
|
|
#ifndef EPSILON
|
|
#define EPSILON 0.01f
|
|
#endif
|
|
|
|
#include <math.h>
|
|
#include <etk/math/Vector2D.h>
|
|
#include <etk/math/Vector3D.h>
|
|
#include <etk/math/Vector4D.h>
|
|
#include <etk/math/Matrix.h>
|
|
#include <etk/math/Matrix4.h>
|
|
#include <etk/math/Plane.h>
|
|
|