TerrainGeom.hh
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef TERRAINGEOM_HH
00028 #define TERRAINGEOM_HH
00029
00030 #include <ode/ode.h>
00031 #include "Global.hh"
00032 #include "Geom.hh"
00033
00034 class TerrainGeom : public Geom
00035 {
00036
00037 public: TerrainGeom( Body *body, dSpaceID spaceId );
00038
00039
00040 public: virtual ~TerrainGeom();
00041
00042
00043 public: void Load( GLfloat *packedVertices, unsigned int vertexCount,
00044 GLuint *indices, unsigned int indexCount,
00045 GLuint *odeIndices, unsigned int odeIndexCount);
00046
00047
00048 public: virtual void Render(RenderOptions *opt);
00049
00050 public: void RenderODE();
00051
00052
00053 private: GLfloat *vertices;
00054 private: unsigned int vertexCount;
00055 private: GLuint *indices;
00056 private: unsigned int indexCount;
00057
00058
00059 private: dTriMeshDataID odeData;
00060 private: GLuint *odeIndices;
00061 private: unsigned int odeIndexCount;
00062 };
00063
00064 #endif
Last updated 12 September 2005 21:38:45
|