34 lines
898 B
C
34 lines
898 B
C
/**
|
|
*******************************************************************************
|
|
* @file etk/math/math.h
|
|
* @brief Ewol Tool Kit : Include all mathematic system of etk (header)
|
|
* @author Edouard DUPIN
|
|
* @date 29/10/2012
|
|
* @par Project
|
|
* Ewol TK
|
|
*
|
|
* @par Copyright
|
|
* Copyright 2011 Edouard DUPIN, all right reserved
|
|
*
|
|
* This software is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY.
|
|
*
|
|
* Licence summary :
|
|
* You can modify and redistribute the sources code and binaries.
|
|
* You can send me the bug-fix
|
|
*
|
|
* Term of the licence in in the file licence.txt.
|
|
*
|
|
*******************************************************************************
|
|
*/
|
|
|
|
|
|
#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>
|
|
|