mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
16 lines
391 B
C++
16 lines
391 B
C++
#pragma once
|
|
|
|
#include "JSystem/JGeometry.hpp"
|
|
|
|
class TDDraw {
|
|
public:
|
|
static void sendPoint(const TVec3f &);
|
|
|
|
static void setup(u32, u32, u8);
|
|
|
|
static void drawSphere(const TVec3f &, float, unsigned long, unsigned long);
|
|
|
|
static void drawFillFan(const TVec3f &, const TVec3f &, const TVec3f &, unsigned long, float, float, unsigned long);
|
|
|
|
static void cameraInit3D();
|
|
}; |