mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-17 04:52:21 -04:00
80c7719636
* mark functions with duplicate names as static * make std::__tag_va_List work with other compilers * fix some offset comments * use inlines in J3DJointFactory, JUTCacheFont * fix class/struct mismatch * improve const correctness * fix missing return values * make some JAudio namespaces more explicit
37 lines
728 B
C++
37 lines
728 B
C++
#ifndef D_SPLINE_PATH_H
|
|
#define D_SPLINE_PATH_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
struct cXyz;
|
|
|
|
class d2DBSplinePath {
|
|
public:
|
|
void Last() {}
|
|
|
|
void Init(s32, s32);
|
|
bool Step();
|
|
cXyz Calc(cXyz*);
|
|
f32 Calc(f32*);
|
|
|
|
public:
|
|
/* 0x00 */ s32 mFrame;
|
|
/* 0x04 */ s32 mKeyNum;
|
|
/* 0x08 */ s32 mDuration;
|
|
/* 0x0C */ s32 mState;
|
|
/* 0x10 */ s32 mKeyNo;
|
|
/* 0x14 */ s32 mEnd;
|
|
/* 0x18 */ s32 field_0x18;
|
|
/* 0x1C */ f32 mStep;
|
|
/* 0x20 */ s32 field_0x20;
|
|
/* 0x24 */ f32 mCurveWeight[3];
|
|
/* 0x30 */ s32 mCurveKey[3];
|
|
/* 0x3C */ void* mUser;
|
|
/* 0x40 */ //void* vtbl; // XXX
|
|
|
|
d2DBSplinePath() { Init(0, 0); }
|
|
virtual ~d2DBSplinePath(){};
|
|
};
|
|
|
|
#endif /* D_SPLINE_PATH_H */
|