Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4077 in orxonox.OLD


Ignore:
Timestamp:
May 6, 2005, 11:16:54 AM (19 years ago)
Author:
patrick
Message:

orxonox/branches/md2_loader: some minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/md2_loader/src/lib/graphics/importer/md2Model.cc

    r4076 r4077  
    1111   ### File Specific:
    1212   main-programmer: Patrick Boenzli
    13    co-programmer: ...
    1413*/
    1514
     
    2019using namespace std;
    2120
     21/********************************************************************************
     22 *   MD2MODEL                                                                   *
     23 ********************************************************************************/
    2224
    2325/**
     
    4244
    4345
     46/********************************************************************************
     47 *   MD2LOADER                                                                  *
     48 ********************************************************************************/
     49
    4450/**
    4551   \brief standard deconstructor
     
    4854*/
    4955MD2Loader::MD2Loader()
    50 {}
     56{
     57   this->setClassName ("MD2Loader");
     58   // Here we initialize our structures to 0
     59   memset(&m_Header, 0, sizeof(tMd2Header));
     60   // Set the pointers to null
     61   m_pSkins=NULL;
     62   m_pTexCoords=NULL;
     63   m_pTriangles=NULL;
     64   m_pFrames=NULL;
     65}
    5166
    5267/**
Note: See TracChangeset for help on using the changeset viewer.