mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
16 lines
310 B
C
16 lines
310 B
C
#ifndef _JAUDIO_JA_CALC_H
|
|
#define _JAUDIO_JA_CALC_H
|
|
|
|
#include "types.h"
|
|
|
|
/////////// JAUDIO MATH DEFINITIONS ///////////
|
|
// Global functions (all C++, so no extern C wrap).
|
|
f32 sqrtf2(f32);
|
|
f32 atanf2(f32, f32);
|
|
void Jac_InitSinTable();
|
|
f32 sinf3(f32);
|
|
|
|
///////////////////////////////////////////////
|
|
|
|
#endif
|