mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
16 lines
323 B
C++
16 lines
323 B
C++
#pragma once
|
|
|
|
#include <revolution.h>
|
|
|
|
f32 JMASinRadian(f32);
|
|
f32 JMACosRadian(f32);
|
|
|
|
f32 JMAAcosRadian(f32);
|
|
|
|
void JMAVECScaleAdd(const Vec *, const Vec *, Vec *, f32);
|
|
void JMAVECLerp(const Vec *, const Vec *, Vec *, f32);
|
|
|
|
class JMathInlineVEC {
|
|
public:
|
|
static void PSVECSubtract(const Vec *, const Vec *, Vec *);
|
|
}; |