diff options
author | Stijn Buys <ingar@osirion.org> | 2008-05-04 22:30:49 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-05-04 22:30:49 +0000 |
commit | 7218e3bd4616d4706090ec47d72845a2bb89c6a3 (patch) | |
tree | cbf3fdb0dddf573edff89b50af22e8a84690cf00 /src/math | |
parent | 33e45d8052b385aa8b1fce68122c8d11f50e7e42 (diff) |
split map reading from models
Diffstat (limited to 'src/math')
-rw-r--r-- | src/math/Makefile.am | 6 | ||||
-rw-r--r-- | src/math/mathlib.h | 10 |
2 files changed, 7 insertions, 9 deletions
diff --git a/src/math/Makefile.am b/src/math/Makefile.am index 7ea7d66..ab4577e 100644 --- a/src/math/Makefile.am +++ b/src/math/Makefile.am @@ -1,11 +1,9 @@ METASOURCES = AUTO -libmath_la_SOURCES = axis.cc color.cc functions.cc matrix4f.cc plane3f.cc \ - vector3f.cc +libmath_la_SOURCES = axis.cc color.cc functions.cc matrix4f.cc vector3f.cc libmath_la_LDFLAGS = -avoid-version -no-undefined -lm noinst_LTLIBRARIES = libmath.la -noinst_HEADERS = axis.h color.h functions.h mathlib.h matrix4f.h plane3f.h \ - vector3f.h +noinst_HEADERS = axis.h color.h functions.h mathlib.h matrix4f.h vector3f.h INCLUDES = -I$(top_srcdir)/src diff --git a/src/math/mathlib.h b/src/math/mathlib.h index 77ccde5..721a1c0 100644 --- a/src/math/mathlib.h +++ b/src/math/mathlib.h @@ -4,8 +4,8 @@ the terms of the GNU General Public License version 2 */ -#ifndef __INCLUDED_MATHLIB_H__ -#define __INCLUDED_MATHLIB_H__ +#ifndef __INCLUDED_MATH_MATHLIB_H__ +#define __INCLUDED_MATH_MATHLIB_H__ /// this namespace contains mathematical classes and functions /** This is an independent library @@ -13,10 +13,10 @@ namespace math {} #include "math/vector3f.h" -#include "math/plane3f.h" -#include "math/matrix4f.h" #include "math/color.h" +#include "math/axis.h" +#include "math/matrix4f.h" #include "math/functions.h" -#endif // __INCLUDED_MATHLIB_H__ +#endif // __INCLUDED_MATH_MATHLIB_H__ |