blob: c52b3ad1d882080ab4bc6674c1e65373f6ab05ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#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 */
|