mirror of https://github.com/zeldaret/oot.git
				
				
				
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			338 B
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			338 B
		
	
	
	
		
			C
		
	
	
	
| #ifndef LIBC64_MATH64_H
 | |
| #define LIBC64_MATH64_H
 | |
| 
 | |
| #include "ultra64.h"
 | |
| 
 | |
| f32 Math_FTanF(f32 angle);
 | |
| f32 Math_FFloorF(f32 x);
 | |
| f32 Math_FCeilF(f32 x);
 | |
| f32 Math_FRoundF(f32 x);
 | |
| f32 Math_FNearbyIntF(f32 x);
 | |
| f32 Math_FTruncF(f32 x);
 | |
| f32 Math_FAtanF(f32 x);
 | |
| f32 Math_FAtan2F(f32 y, f32 x);
 | |
| f32 Math_FAsinF(f32 x);
 | |
| f32 Math_FAcosF(f32 x);
 | |
| 
 | |
| #endif
 |