Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

orxonox/trunk: doxygen tags

File:
1 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*/
Note: See TracChangeset for help on using the changeset viewer.