11 lines
362 B
C
11 lines
362 B
C
#ifndef __MATH_LIBRARY_H__
|
|
#define __MATH_LIBRARY_H__
|
|
|
|
void ml_vec3f_normalize_copy(f32 arg0[3], f32 arg1[3]);
|
|
void ml_vec3f_yaw_rotate_copy(f32 arg0[3], f32 arg1[3], f32 arg2);
|
|
void ml_vec3f_diff_copy(f32 dst[3], f32 src1[3], f32 src2[3]);
|
|
void ml_vec3f_set_length_copy(f32 dst[3], f32 src[3], f32 len);
|
|
void ml_vec3f_set_length(f32 arg0[3], f32 arg2);
|
|
|
|
#endif
|