Ignore:
Timestamp:
06/30/06 14:22:34 (19 years ago)
Author:
gumbau
Message:
 
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  
    1212. 
    1313*/ 
    14 namespace Geometry { 
    15  
     14namespace Geometry 
     15{ 
    1616        //      Basic types. 
    1717        typedef float                                   Real; 
     
    4141                unsigned short boneIndex; 
    4242                Real weight; 
    43  
    4443        }; 
    4544 
     
    5554                float   scaleFactor; 
    5655        }; 
    57          
     56 
    5857        //      Needed to update the progress bar. 
    5958        typedef float updateProgressBar(float); 
     
    6261 
    6362} // end of Geometry namespace 
    64  
    6563 
    6664#define GEO_ENDIAN_LITTLE 1 
  • GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoLodStripsConstructor.h

    r1018 r1070  
    6767                        //      Lista que contiene el modelo en varias tiras y cada tira 
    6868                        //      contiene la secuencia 
     69                        //      de vertices que la forma 
    6970 
    70                         // de vertices que la forma 
    7171                        uint32 MARCA; //Para delimitar el final de tira. 
    7272                        uint32 TOTALTIRAS; 
     
    8080                        size_t  mSubMeshLeaves; 
    8181 
    82                         Mesh    *geoMesh; 
     82                        Mesh    *mGeoMesh; 
     83                        Mesh    *mInitialMesh; 
     84 
    8385                        const   Geometry::Mesh *meshoriginal; 
    84                         /*const */MeshSimplificationSequence *geoMeshSQ; 
     86                        /*const */MeshSimplificationSequence *mGeoMeshSQ; 
    8587                        int             NumVertsRepetidos; 
    8688 
     
    120122                        void leeVerticesyTirasDeMesh(); 
    121123 
     124                        //      Sort submesh bones. 
     125                        void    sortBones(); 
     126                         
    122127                public: 
    123128 
     
    149154                        Mesh    *       GetMesh(); 
    150155 
    151                         // Sets what is the submesh that stores the leaves 
     156                        ///     Sets what is the submesh that stores the leaves. 
    152157                        void SetSubMeshLeaves(size_t    submesh); 
    153  
    154158        }; 
    155159 
  • GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoLodStripsLibrary.h

    r1069 r1070  
    4242        typedef struct 
    4343        { 
    44                 float Vertex[3]; 
    45                 SmallInt Next; 
     44                float                   Vertex[3]; 
     45                SmallInt        Next; 
    4646        } VertexType; 
    4747 
  • GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoMesh.h

    r980 r1070  
    5959 
    6060#endif 
    61  
  • GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoMeshSimplifier.h

    r1024 r1070  
    5959                        //private: // fer protected 
    6060                        Mesh                                                                                            *mGeoMesh; 
     61                        Mesh                                                                                            *mInitialMesh; 
    6162                        MeshSimplificationSequence      *msimpsequence; 
    6263                        const Mesh                                                                      *objmesh; 
  • GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoTreeSimplifier.h

    r1019 r1070  
    9494                void RecursiveFillOctreeWithLeaves(LeafOctree*); 
    9595                LeafOctree* CreateLeafOctree(int deep); // generates a new leaf octree and returns its root node 
    96                 int vertex_count; 
     96                size_t  vertex_count; 
    9797                LeafOctree ** octree_owning_leaf; 
    9898                LeafOctree *GetMinOctreeNodeForLeaf(LeafOctree *start, const Leaf &leaf); 
Note: See TracChangeset for help on using the changeset viewer.