1 /*---------------------------------------------------------------------------*
2   Project:  Horizon
3   File:     math.h
4 
5   Copyright (C)2009 Nintendo Co., Ltd.  All rights reserved.
6 
7   These coded instructions, statements, and computer programs contain
8   proprietary information of Nintendo of America Inc. and/or Nintendo
9   Company Ltd., and are protected by Federal copyright law. They may
10   not be disclosed to third parties or copied or duplicated in any form,
11   in whole or in part, without the prior written consent of Nintendo.
12 
13   $Rev: 23002 $
14  *---------------------------------------------------------------------------*/
15 
16 #ifndef NN_MATH_H_
17 #define NN_MATH_H_
18 
19 #include <nn/config.h>
20 
21 /* Please see man pages for details
22 
23 */
24 
25 #ifdef __cplusplus
26     #if NN_PLATFORM_USE_FP
27         #include <nn/math/math_Config.h>
28         #include <nn/math/math_Types.h>
29         #include <nn/math/math_Constant.h>
30         #include <nn/math/math_Arithmetic.h>
31         #include <nn/math/math_Triangular.h>
32         #include <nn/math/math_Geometry.h>
33         #include <nn/math/math_Equation.h>
34     #endif  // if NN_PLATFORM_USE_FP
35 
36     #include <nn/math/math_Utility.h>
37 #endif  // ifdef __cplusplus
38 
39 /* NN_MATH_H_ */
40 #endif
41