mirror of
https://github.com/izzy2lost/Diddy-Kong-Racing.git
synced 2026-06-19 01:16:26 -07:00
* Fix warnings * Update src/thread0_epc.c Co-authored-by: Ryan Myers <ryan.p.myers@gmail.com> * identify some texture init stuff * match _Litob * match cosf * match sinf * formatting * Update math.h * Delete sinf.s * quick fix --------- Co-authored-by: Ryan Myers <ryan.p.myers@gmail.com>
11 lines
150 B
C
11 lines
150 B
C
#ifndef MATH_H
|
|
#define MATH_H
|
|
|
|
#define M_PI 3.14159265358979323846
|
|
|
|
f32 sinf(f32 x); //official name: fsin
|
|
f32 cosf(f32 x);
|
|
f32 sqrtf(f32 x);
|
|
|
|
#endif
|