Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 338 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 338 Bytes

wiitrig

Wii sin/cos implementation

Details

The following two helpers are provided:

pub fn wii_sin(x: f32) -> f32;
pub fn wii_cos(x: f32) -> f32;

C Bindings

Usage in C/C++ projects is available by including wiitrig.h

The following two helpers are provided:

float wii_sin(float x);
float wii_cos(float x);