Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3418 in orxonox.OLD for orxonox/trunk/src/importer/model.h


Ignore:
Timestamp:
Feb 22, 2005, 6:14:44 PM (20 years ago)
Author:
bensch
Message:

orxonox/trunk/importer: added primitive sphere, but it still has some errors on it

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/importer/model.h

    r3400 r3418  
    4747
    4848  //! 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
    5750  {
    5851    int vertexCount;        //!< The Count of vertices this Face has.
     
    10598  bool addVertex(const float x, const float y, const float z);
    10699  bool addFace(char* faceString);
    107   bool addFace(const float faceElemCount, ...);
     100  bool addFace(const float faceElemCount, int type, ...);
    108101  bool addVertexNormal(char* normalString);
    109102  bool addVertexNormal(const float x, const float y, const float z);
     
    120113
    121114  void cubeModel(void);
     115  void sphereModel(void);
    122116  void cylinderModel(void);
    123117};
Note: See TracChangeset for help on using the changeset viewer.