Files
banjo-kazooie/include/core2/coords.h
mariob92 03afd57a54 - document coord related functions (mostly unused by the game)
- renamed code_B7B20.c to coords.c
- removed the exception for asm/core1/code_1E820.s from .gitignore file (should not be in the work tree)
2024-09-19 16:52:55 +02:00

10 lines
478 B
C

#include <ultra64.h>
#include "bool.h"
void coords_copy(s32 min_out[3], s32 max_out[3], s32 min_in[3], s32 max_in[3]);
s32 coords_func_8033EAF8(s32 min[3], s32 max[3], f32 position[3], f32 direction[3]);
bool coords_isPointInside(s32 min[3], s32 max[3], s32 point[3]);
bool coords_isPointInsideWithOffset(s32 min[3], s32 max[3], s32 point[3], s32 offset);
void coords_scale(s32 min[3], s32 max[3], s32 ratio);
void coords_translate(s32 min[3], s32 max[3], f32 translation[3]);