Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4023 in orxonox.OLD


Ignore:
Timestamp:
May 3, 2005, 1:48:38 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: doxygen tags

Location:
orxonox/trunk/src/lib/graphics/importer
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/graphics/importer/model.cc

    r4022 r4023  
    3131/// SUB-Elements ///
    3232////////////////////
     33/**
     34   \brief creates a new ModelFaceElement
     35*/
    3336ModelFaceElement::ModelFaceElement()
    34 {
    35 }
    36 
     37{}
     38
     39/**
     40   \brief destroys a ModelFaceElement
     41*/
    3742ModelFaceElement::~ModelFaceElement()
    3843{
     
    4146}
    4247
     48/**
     49   \brief creates a new ModelFace
     50*/
    4351ModelFace::ModelFace()
    4452{
     
    5361}
    5462
     63/**
     64   \brief deletes a ModelFace
     65*/
    5566ModelFace::~ModelFace()
    5667{
     
    6980}
    7081
     82/**
     83   \brief Creates a new ModelGroup
     84*/
    7185ModelGroup::ModelGroup()
    7286{
     
    8195}
    8296
     97/**
     98   \brief deletes a ModelGroup
     99*/
    83100ModelGroup::~ModelGroup()
    84101{
     
    93110}
    94111
     112/**
     113   \brief cleans up a ModelGroup
     114
     115   actually does the same as the delete Operator, but does not delete the predecessing group
     116*/
    95117void ModelGroup::cleanup(void)
    96118{
     119  PRINTF(5)("Cleaning up group\n");
    97120  if (this->firstFace)
    98121    delete this->firstFace;
     
    344367/**
    345368   \brief adds a new Material to the Material List
    346    \param material the name of the Material to add
     369   \param materialName the name of the Material to add
    347370   \returns the added material
    348371*/
  • orxonox/trunk/src/lib/graphics/importer/model.h

    r4022 r4023  
    9696
    9797  char* name;                 //!< This is the name of the Model.
    98   MODEL_TYPE type;
     98  MODEL_TYPE type;            //!< A type for the Model
    9999  bool finalized;             //!< Sets the Object to be finalized.
    100100
     
    133133
    134134  void setName(const char* name);
     135  /** \returns the Name of the Model */
    135136  inline const char* getName() {return this->name;}
    136137 
Note: See TracChangeset for help on using the changeset viewer.