~tomprogs/gewoopi/trunk

« back to all changes in this revision

Viewing changes to include/gewoopi/scene/mesh.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
1
//------------------------------------------------------------------------------
2
 
// mesh.h - this file is part of the gewoopi game engine
 
2
// mesh.hpp - this file is part of the gewoopi game engine
3
3
// (c) copyright 2008 - 2009 Thomas Geymayer <tomgey@gmail.com>
4
 
// For conditions of distribution and use, see copyright notice in gewoopi.h
 
4
// For conditions of distribution and use, see copyright notice in gewoopi.hpp
5
5
//------------------------------------------------------------------------------
6
6
 
7
7
#ifndef GEWOOPI_MESH_HPP_
12
12
 
13
13
#include <stdint.h>
14
14
 
15
 
#include "fwd.h"
16
 
#include "../video/fwd.h"
17
 
#include "../video/vertex.h"
 
15
#include "fwd.hpp"
 
16
#include "../video/fwd.hpp"
 
17
#include "../video/vertex.hpp"
18
18
#include "../math/vector.hpp"
19
19
#include "../math/face.hpp"
20
20