34 lines
1.0 KiB
C++
34 lines
1.0 KiB
C++
/* -*- C++ -*- ------------------------------------------------------------
|
|
|
|
Copyright (c) 2007 Jesse Anders and Demian Nave http://cmldev.net/
|
|
|
|
The Configurable Math Library (CML) is distributed under the terms of the
|
|
Boost Software License, v1.0 (see cml/LICENSE for details).
|
|
|
|
*-----------------------------------------------------------------------*/
|
|
/** @file
|
|
* @brief
|
|
*/
|
|
|
|
#ifndef mathlib_h
|
|
#define mathlib_h
|
|
|
|
#include <cml/mathlib/typedef.h>
|
|
#include <cml/mathlib/epsilon.h>
|
|
#include <cml/mathlib/vector_angle.h>
|
|
#include <cml/mathlib/vector_ortho.h>
|
|
#include <cml/mathlib/vector_transform.h>
|
|
#include <cml/mathlib/matrix_ortho.h>
|
|
#include <cml/mathlib/matrix_rotation.h>
|
|
#include <cml/mathlib/matrix_transform.h>
|
|
#include <cml/mathlib/matrix_projection.h>
|
|
#include <cml/mathlib/quaternion_basis.h>
|
|
#include <cml/mathlib/quaternion_rotation.h>
|
|
#include <cml/mathlib/coord_conversion.h>
|
|
#include <cml/mathlib/interpolation.h>
|
|
#include <cml/mathlib/frustum.h>
|
|
#include <cml/mathlib/projection.h>
|
|
#include <cml/mathlib/picking.h>
|
|
|
|
#endif
|