Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 27, 2005, 7:44:39 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: resource manager working, player uses it.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/graphics/importer/primitive_model.h

    r3657 r3658  
    11/*!
    2     \file primitive_model.h
    3 
     2    \file primitive_model.h
     3    \brief a Class to handle different simple models like planes cubes spheres and so on.
     4    (cube is also an option of Model, but is extended here.
    45*/
    56
     
    1011
    1112//! Specification of different primitives the Model knows
    12 enum PRIMITIVE {PLANE, CUBE, SPHERE, CYLINDER, CONE};
     13enum PRIMITIVE {CUBE, SPHERE, PLANE, CYLINDER, CONE};
    1314
    1415// FORWARD DEFINITION \\
     
    1819
    1920 public:
    20   PrimitiveModel();
    2121  PrimitiveModel(PRIMITIVE type, float size = 1.0, unsigned int detail = 10);
    22 
    2322  virtual ~PrimitiveModel();
    2423
    2524 protected:
    26   void cubeModel(void);
    2725  void sphereModel(float size = 1.0, unsigned int detail = 10);
    2826  void cylinderModel(float size = 1.0, unsigned int detail = 10);
Note: See TracChangeset for help on using the changeset viewer.