Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 14, 2006, 12:17:35 AM (18 years ago)
Author:
patrick
Message:

bsp: md3 more source files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/bsp_model/src/lib/graphics/importer/md3/md3_animation.cc

    r8348 r8351  
    1919
    2020
    21 using namespace std;
     21namespace md3
     22{
     23
     24
     25
     26  /**
     27   * create an empty MD3Animation object
     28   */
     29  MD3Animation::MD3Animation()
     30  {
     31    this->init();
     32  }
     33
     34
     35  /**
     36   * create a new MD3 Anumation object and initialize it with the data on the given line
     37   * @param line: the line to read from
     38   */
     39  MD3Animation::MD3Animation(std::string line)
     40  {
     41    this->init();
     42    // loadAnimation()
     43  }
     44
     45
     46  /**
     47   * deconstructor
     48   */
     49  MD3Animation::~MD3Animation()
     50  {}
     51
     52
     53  void MD3Animation::init()
     54  {
     55    this->first = 0;
     56    this->numFrames = 0;
     57    this->fps = 0;
     58  }
     59
     60
     61
     62
     63}
     64
Note: See TracChangeset for help on using the changeset viewer.