mMath.h

Engine/source/math/mMath.h

More...

Detailed Description

 1
 2//-----------------------------------------------------------------------------
 3// Copyright (c) 2012 GarageGames, LLC
 4//
 5// Permission is hereby granted, free of charge, to any person obtaining a copy
 6// of this software and associated documentation files (the "Software"), to
 7// deal in the Software without restriction, including without limitation the
 8// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 9// sell copies of the Software, and to permit persons to whom the Software is
10// furnished to do so, subject to the following conditions:
11//
12// The above copyright notice and this permission notice shall be included in
13// all copies or substantial portions of the Software.
14//
15// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21// IN THE SOFTWARE.
22//-----------------------------------------------------------------------------
23
24#ifndef _MMATH_H_
25#define _MMATH_H_
26
27
28#ifndef _MRECT_H_
29#include "math/mRect.h"
30#endif
31#ifndef _MBOX_H_
32#include "math/mBox.h"
33#endif
34#ifndef _MMATRIX_H_
35#include "math/mMatrix.h"
36#endif
37#ifndef _MQUAT_H_
38#include "math/mQuat.h"
39#endif
40#ifndef _MANGAXIS_H_
41#include "math/mAngAxis.h"
42#endif
43#ifndef _MSPHERE_H_
44#include "math/mSphere.h"
45#endif
46#ifndef _MRANDOM_H_
47#include "math/mRandom.h"
48#endif
49#ifndef _MEASE_H_
50#include "math/mEase.h"
51#endif
52#ifndef MROTATION_H
53#include "math/mRotation.h"
54#endif
55
56#endif //_MMATH_H_
57