Even more DolphinCGraphics

Former-commit-id: dd8dd94f36
This commit is contained in:
2022-12-01 00:58:57 -05:00
parent 95ea39c9cc
commit 6b27aee58d
26 changed files with 413 additions and 65 deletions

View File

@@ -43,6 +43,9 @@ CHECK_SIZEOF(CRelAngle, 0x4)
// __mi__FRC9CRelAngleRC9CRelAngle
// __pl__FRC9CRelAngleRC9CRelAngle
// __dv__FRC9CRelAnglef
// static inline CRelAngle operator/(const CRelAngle& ang, float f) {
// return CRelAngle::FromRadians(ang.AsRadians() / f);
// }
static inline float sine(const CRelAngle& angle) { return sin(angle.AsRadians()); }
static inline float cosine(const CRelAngle& angle) { return cos(angle.AsRadians()); }