Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 14, 2006, 2:49:29 AM (18 years ago)
Author:
patrick
Message:

bsp: started reading in the data tagas

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/bsp_model/src/lib/graphics/importer/md3/md3_tag.h

    r8348 r8359  
    1313#include "vector.h"
    1414
     15namespace md3
     16{
     17
     18typedef struct MD3TagData
     19{
     20  sVec3D     position;
     21  float      matrix[3][3];
     22};
     23
     24
    1525class MD3Tag
    1626{
    1727  public:
    18     MD3Tag() { /* loadMesh(this, din) */ }
     28    MD3Tag();
    1929    virtual ~MD3Tag();
    2030
     
    2535    float                     matrix[3][3];           //!< 3x3 rotation matrix
    2636
     37    MD3TagData*               data;                   //!< data reference
    2738};
    2839
     40}
    2941
    3042#endif /* _MD3_TAG_H */
Note: See TracChangeset for help on using the changeset viewer.