mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-09 04:29:46 -04:00
37 lines
765 B
C++
37 lines
765 B
C++
#ifndef D_BG_W_HF_H
|
|
#define D_BG_W_HF_H
|
|
|
|
#include "d/d_bg_w_sv.h"
|
|
|
|
class dBgWHf : public dBgWSv {
|
|
public:
|
|
virtual ~dBgWHf() {}
|
|
|
|
void SetVtx(Vec* vtx) {
|
|
if (GetVtxTbl() == NULL) {
|
|
SetVtxTbl(vtx);
|
|
CopyBackVtx();
|
|
} else {
|
|
SetVtxTbl(vtx);
|
|
}
|
|
}
|
|
|
|
bool Set(cBgD_t*, u16*, f32, int, int, u32);
|
|
void CalcPlane();
|
|
void ClassifyPlane();
|
|
void MoveHf();
|
|
void MakeBlckMinMaxHf(int, f32*, f32*);
|
|
void MakeBlckBndHf(int, f32*, f32*);
|
|
void MakeNodeTreeRpHf(int);
|
|
void MakeNodeTreeGrpRpHf(int);
|
|
void MakeNodeTreeHf();
|
|
|
|
public:
|
|
/* 0xC4 */ f32 mC4;
|
|
/* 0xC8 */ u16* mC8;
|
|
/* 0xCC */ int m_gridx;
|
|
/* 0xD0 */ int m_gridz;
|
|
}; // Size: 0xD4
|
|
|
|
#endif /* D_BG_W_HF_H */
|