mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-15 20:40:19 -04:00
Various inline cleanup
This commit is contained in:
@@ -71,10 +71,13 @@ public:
|
||||
u16 getClusterNum() const { return mClusterNum; }
|
||||
u16 getClusterKeyNum() const { return mClusterKeyNum; }
|
||||
J3DCluster* getClusterPointer(u16 index) {
|
||||
J3D_ASSERT(186, (index < mClusterNum),"Error : range over.");
|
||||
J3D_ASSERT(186, (index < mClusterNum), "Error : range over.");
|
||||
return &mClusterPointer[index];
|
||||
}
|
||||
J3DClusterKey* getClusterKeyPointer(u16 i) { return &mClusterKeyPointer[i]; }
|
||||
J3DClusterKey* getClusterKeyPointer(u16 i) {
|
||||
J3D_ASSERT(199, (i < mClusterKeyNum), "Error : range over.");
|
||||
return &mClusterKeyPointer[i];
|
||||
}
|
||||
f32* getVtxPos() { return mVtxPos; }
|
||||
f32* getVtxNrm() { return mVtxNrm; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user