1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-21 12:54:51 +00:00
oot/include/ultra64/gu.h

9 lines
141 B
C
Raw Normal View History

#ifndef ULTRA64_GU_H
#define ULTRA64_GU_H
2020-03-17 04:31:30 +00:00
#define GU_PI 3.1415926
#define ROUND(x) (s32)(((x) >= 0.0) ? ((x) + 0.5) : ((x) - 0.5))
2020-03-17 04:31:30 +00:00
#endif