mirror of
https://github.com/sm64pc/sm64pc.git
synced 2025-04-09 15:55:38 +02:00
9 lines
191 B
C
9 lines
191 B
C
#include "libultra_internal.h"
|
|
|
|
void guNormalize(f32 *x, f32 *y, f32 *z) {
|
|
f32 tmp = 1.0f / sqrtf(*x * *x + *y * *y + *z * *z);
|
|
*x = *x * tmp;
|
|
*y = *y * tmp;
|
|
*z = *z * tmp;
|
|
}
|