mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-29 08:42:53 -04:00
36 lines
789 B
C++
36 lines
789 B
C++
#ifndef J3DUCLIPPER_H
|
|
#define J3DUCLIPPER_H
|
|
|
|
#include "dolphin/mtx/mtxvec.h"
|
|
#include "dolphin/types.h"
|
|
|
|
class J3DModel;
|
|
|
|
class J3DUClipper {
|
|
public:
|
|
J3DUClipper() { init(); }
|
|
virtual ~J3DUClipper() {}
|
|
void init();
|
|
void calcViewFrustum();
|
|
u32 clip(const Mtx, Vec, f32);
|
|
u32 clip(const Mtx, Vec*, Vec*);
|
|
u32 clipByBox(J3DModel*);
|
|
|
|
void setFovy(f32 fovy) { mFovY = fovy; }
|
|
void setAspect(f32 aspect) { mAspect = aspect; }
|
|
void setNear(f32 near) { mNear = near; }
|
|
void setFar(f32 far) { mFar = far; }
|
|
|
|
f32 getFar() { return mFar; }
|
|
|
|
private:
|
|
/* 0x04 */ Vec mPlane[4];
|
|
/* 0x34 */ u8 _34[0x4C - 0x34];
|
|
/* 0x4C */ f32 mFovY;
|
|
/* 0x50 */ f32 mAspect;
|
|
/* 0x54 */ f32 mNear;
|
|
/* 0x58 */ f32 mFar;
|
|
};
|
|
|
|
#endif /* J3DUCLIPPER_H */
|