1 /*
2 * VMMLib - Vector & Matrix Math Lib
3 *
4 * @author Jonas Boesch
5 * @author Stefan Eilemann
6 * @author Renato Pajarola
7 * @author David H. Eberly ( Wild Magic )
8 * @author Andrew Willmott ( VL )
9 *
10 * @license revised BSD license, check LICENSE
11 *
12 * parts of the source code of VMMLib were inspired by David Eberly's
13 * Wild Magic and Andrew Willmott's VL.
14 *
15 */
16 
17 
18 #ifndef __VMML__VMMLIB__HPP__
19 #define __VMML__VMMLIB__HPP__
20 
21 #include <vmmlib/vector.hpp>
22 #include <vmmlib/matrix.hpp>
23 #include <vmmlib/quaternion.hpp>
24 #include <vmmlib/frustum.hpp>
25 #include <vmmlib/frustum_culler.hpp>
26 
27 #endif
28