mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-29 16:44:37 -04:00
sys_math.c Rename (#1258)
* rename via comments * missed a comment * math header * name boot_80086760.c functions * PR Review * rm cam comment * Elliptic review * alphabetical
This commit is contained in:
+3
-3
@@ -348,9 +348,9 @@ void Math_Vec3f_SumScaled(Vec3f* a, Vec3f* b, f32 scale, Vec3f* dest) {
|
||||
}
|
||||
|
||||
void Math_Vec3f_AddRand(Vec3f* orig, f32 scale, Vec3f* dest) {
|
||||
dest->x = randPlusMinusPoint5Scaled(scale) + orig->x;
|
||||
dest->y = randPlusMinusPoint5Scaled(scale) + orig->y;
|
||||
dest->z = randPlusMinusPoint5Scaled(scale) + orig->z;
|
||||
dest->x = Rand_CenteredFloat(scale) + orig->x;
|
||||
dest->y = Rand_CenteredFloat(scale) + orig->y;
|
||||
dest->z = Rand_CenteredFloat(scale) + orig->z;
|
||||
}
|
||||
|
||||
void Math_Vec3f_DistXYZAndStoreNormDiff(Vec3f* a, Vec3f* b, f32 scale, Vec3f* dest) {
|
||||
|
||||
Reference in New Issue
Block a user