mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
Remove DEG_TO_BINANG
, BINANG_TO_DEG
This commit is contained in:
parent
06a4aa2818
commit
5321647e5b
1 changed files with 0 additions and 2 deletions
|
@ -97,11 +97,9 @@ typedef struct {
|
||||||
#define IS_ZERO(f) (fabsf(f) < 0.008f)
|
#define IS_ZERO(f) (fabsf(f) < 0.008f)
|
||||||
|
|
||||||
// Angle conversion macros
|
// Angle conversion macros
|
||||||
#define DEG_TO_BINANG(degrees) (s16)((degrees) * (0x8000 / 180.0f))
|
|
||||||
#define RAD_TO_BINANG(radians) (s16)((radians) * (0x8000 / M_PI))
|
#define RAD_TO_BINANG(radians) (s16)((radians) * (0x8000 / M_PI))
|
||||||
#define RAD_TO_DEG(radians) ((radians) * (180.0f / M_PI))
|
#define RAD_TO_DEG(radians) ((radians) * (180.0f / M_PI))
|
||||||
#define DEG_TO_RAD(degrees) ((degrees) * (M_PI / 180.0f))
|
#define DEG_TO_RAD(degrees) ((degrees) * (M_PI / 180.0f))
|
||||||
#define BINANG_TO_DEG(binang) ((f32)(binang) * (180.0f / 0x8000))
|
|
||||||
#define BINANG_TO_RAD(binang) ((f32)(binang) * (M_PI / 0x8000))
|
#define BINANG_TO_RAD(binang) ((f32)(binang) * (M_PI / 0x8000))
|
||||||
#define BINANG_TO_RAD_ALT(binang) (((f32)(binang) / (f32)0x8000) * M_PI)
|
#define BINANG_TO_RAD_ALT(binang) (((f32)(binang) / (f32)0x8000) * M_PI)
|
||||||
#define BINANG_TO_RAD_ALT2(binang) (((f32)(binang) * M_PI) / 0x8000)
|
#define BINANG_TO_RAD_ALT2(binang) (((f32)(binang) * M_PI) / 0x8000)
|
||||||
|
|
Loading…
Reference in a new issue