Changeset 3418 in orxonox.OLD for orxonox/trunk/src/importer/model.h
- Timestamp:
- Feb 22, 2005, 6:14:44 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/importer/model.h
r3400 r3418 47 47 48 48 //! This is the placeholder of a Face belonging to a Group of Faces. 49 /** 50 \todo take Material to a call for itself. 51 52 This can also be a Material-Change switch. 53 That means if you want to change a Material inside of a group, 54 you can create an empty face and apply a material to it, and the Importer will cahnge Colors 55 */ 56 struct Face 49 struct Face 57 50 { 58 51 int vertexCount; //!< The Count of vertices this Face has. … … 105 98 bool addVertex(const float x, const float y, const float z); 106 99 bool addFace(char* faceString); 107 bool addFace(const float faceElemCount, ...);100 bool addFace(const float faceElemCount, int type, ...); 108 101 bool addVertexNormal(char* normalString); 109 102 bool addVertexNormal(const float x, const float y, const float z); … … 120 113 121 114 void cubeModel(void); 115 void sphereModel(void); 122 116 void cylinderModel(void); 123 117 };
Note: See TracChangeset
for help on using the changeset viewer.