mirror of
https://github.com/zeldaret/tp
synced 2026-05-25 07:23:14 -04:00
7d271be857
* d_resource / some d_stage * setup dDlst_list_c / d_select_icon OK * JUTXfb / some JUTVideo + various * some J2D classes / JUTVideo/Fader attempts * bunch of m_Do cleanup + matches / f_ap_game OK * mDoLib_clipper::setup OK * most of d_meter_HIO OK * pane_class / kantera_icon_meter
26 lines
769 B
C++
26 lines
769 B
C++
#ifndef J2DORTHOGRAPH_H
|
|
#define J2DORTHOGRAPH_H
|
|
|
|
#include "JSystem/J2DGraph/J2DGrafContext.h"
|
|
#include "dolphin/types.h"
|
|
|
|
class J2DOrthoGraph : public J2DGrafContext {
|
|
public:
|
|
/* 802E9670 */ J2DOrthoGraph();
|
|
/* 802E96D0 */ J2DOrthoGraph(f32, f32, f32, f32, f32, f32);
|
|
/* 802E980C */ void setOrtho(JGeometry::TBox2<f32> const&, f32, f32);
|
|
/* 802E987C */ void scissorBounds(JGeometry::TBox2<f32>*, JGeometry::TBox2<f32> const*);
|
|
|
|
/* 8000B118 */ virtual ~J2DOrthoGraph();
|
|
/* 802E97B4 */ virtual void setPort();
|
|
/* 802E9C88 */ virtual bool getGrafType() const;
|
|
/* 802E9840 */ virtual void setLookat();
|
|
|
|
private:
|
|
/* 0xBC */ JGeometry::TBox2<f32> mOrtho;
|
|
/* 0xCC */ f32 mNear;
|
|
/* 0xD0 */ f32 mFar;
|
|
};
|
|
|
|
#endif /* J2DORTHOGRAPH_H */
|