Changeset 1070 for GTP/trunk/Lib/Geom/shared/GTGeometry/include
- Timestamp:
- 06/30/06 14:22:34 (19 years ago)
- Location:
- GTP/trunk/Lib/Geom/shared/GTGeometry/include
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoBase.h
r1014 r1070 12 12 . 13 13 */ 14 namespace Geometry {15 14 namespace Geometry 15 { 16 16 // Basic types. 17 17 typedef float Real; … … 41 41 unsigned short boneIndex; 42 42 Real weight; 43 44 43 }; 45 44 … … 55 54 float scaleFactor; 56 55 }; 57 56 58 57 // Needed to update the progress bar. 59 58 typedef float updateProgressBar(float); … … 62 61 63 62 } // end of Geometry namespace 64 65 63 66 64 #define GEO_ENDIAN_LITTLE 1 -
GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoLodStripsConstructor.h
r1018 r1070 67 67 // Lista que contiene el modelo en varias tiras y cada tira 68 68 // contiene la secuencia 69 // de vertices que la forma 69 70 70 // de vertices que la forma71 71 uint32 MARCA; //Para delimitar el final de tira. 72 72 uint32 TOTALTIRAS; … … 80 80 size_t mSubMeshLeaves; 81 81 82 Mesh *geoMesh; 82 Mesh *mGeoMesh; 83 Mesh *mInitialMesh; 84 83 85 const Geometry::Mesh *meshoriginal; 84 /*const */MeshSimplificationSequence * geoMeshSQ;86 /*const */MeshSimplificationSequence *mGeoMeshSQ; 85 87 int NumVertsRepetidos; 86 88 … … 120 122 void leeVerticesyTirasDeMesh(); 121 123 124 // Sort submesh bones. 125 void sortBones(); 126 122 127 public: 123 128 … … 149 154 Mesh * GetMesh(); 150 155 151 // Sets what is the submesh that stores the leaves156 /// Sets what is the submesh that stores the leaves. 152 157 void SetSubMeshLeaves(size_t submesh); 153 154 158 }; 155 159 -
GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoLodStripsLibrary.h
r1069 r1070 42 42 typedef struct 43 43 { 44 float 45 SmallInt 44 float Vertex[3]; 45 SmallInt Next; 46 46 } VertexType; 47 47 -
GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoMesh.h
r980 r1070 59 59 60 60 #endif 61 -
GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoMeshSimplifier.h
r1024 r1070 59 59 //private: // fer protected 60 60 Mesh *mGeoMesh; 61 Mesh *mInitialMesh; 61 62 MeshSimplificationSequence *msimpsequence; 62 63 const Mesh *objmesh; -
GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoTreeSimplifier.h
r1019 r1070 94 94 void RecursiveFillOctreeWithLeaves(LeafOctree*); 95 95 LeafOctree* CreateLeafOctree(int deep); // generates a new leaf octree and returns its root node 96 intvertex_count;96 size_t vertex_count; 97 97 LeafOctree ** octree_owning_leaf; 98 98 LeafOctree *GetMinOctreeNodeForLeaf(LeafOctree *start, const Leaf &leaf);
Note: See TracChangeset
for help on using the changeset viewer.