~tomprogs/gewoopi/trunk

« back to all changes in this revision

Viewing changes to include/gewoopi/math/math.hpp

  • Committer: Thomas Geymayer
  • Date: 2009-12-31 15:38:07 UTC
  • Revision ID: tomgey@gmail.com-20091231153807-9833458pgys6ia7j
Cleaned up and improved documentation:
 - Different doxyfiles for developers and users
 - Renamed remaining .h to .hpp
 - Relative paths in doxyfiles instead of absolute

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * math.h
3
 
 *
4
 
 *  Created on: 15.12.2008
5
 
 *      Author: tom
 
1
//------------------------------------------------------------------------------
 
2
// math/math.hpp - this file is part of the gewoopi game engine
 
3
// (c) copyright 2009 Thomas Geymayer <tomgey@gmail.com>
 
4
// For conditions of distribution and use, see copyright notice in gewoopi.hpp
 
5
//------------------------------------------------------------------------------
 
6
 
 
7
/*!
 
8
 * @file
 
9
 * @brief Includefile to include all headers of the input part of the engine
 
10
 * @details
 
11
 * @author Thomas Geymayer <tomgey@gmail.com>
 
12
 * @date Date of Creation: 15.12.2008
6
13
 */
7
14
 
8
 
#ifndef GEWOOPI_MATH_H_
9
 
#define GEWOOPI_MATH_H_
 
15
#ifndef GEWOOPI_MATH_HPP_
 
16
#define GEWOOPI_MATH_HPP_
10
17
 
11
18
#include <boost/cstdint.hpp>
12
19
 
16
23
#include "matrix.hpp"
17
24
//#include "plane.hpp"
18
25
 
19
 
#endif /* GEWOOPI_MATH_H_ */
 
26
namespace gewoopi
 
27
{
 
28
 
 
29
//------------------------------------------------------------------------------
 
30
///
 
31
/// @brief In this namespace all mathematical classes reside:
 
32
///
 
33
/// Matrix, vector, plane, ray...
 
34
 
 
35
namespace math {}
 
36
 
 
37
}
 
38
 
 
39
#endif /* GEWOOPI_MATH_HPP_ */