- 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)
10 lines
478 B
C
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]);
|