Переименование s0 -> s, x1 -> x, x2 -> y, x3 -> z, что должно упростить читаемость кода. Также обновление документации
This commit is contained in:
parent
d83ab7160d
commit
b8d383da33
38 changed files with 2104 additions and 2070 deletions
|
|
@ -48,9 +48,9 @@ BGC_FP32_Affine3* _create_bgc_affine3_random_list(int affine_amount)
|
||||||
get_random_value_fp32()
|
get_random_value_fp32()
|
||||||
);
|
);
|
||||||
|
|
||||||
position.shift.x1 = get_random_value_fp32();
|
position.shift.x = get_random_value_fp32();
|
||||||
position.shift.x2 = get_random_value_fp32();
|
position.shift.y = get_random_value_fp32();
|
||||||
position.shift.x3 = get_random_value_fp32();
|
position.shift.z = get_random_value_fp32();
|
||||||
|
|
||||||
bgc_fp32_position3_get_affine(&affines[i], &position);
|
bgc_fp32_position3_get_affine(&affines[i], &position);
|
||||||
}
|
}
|
||||||
|
|
@ -72,9 +72,9 @@ BGC_FP32_Vector3* _create_bgc_vector3_random_list(int amount)
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < amount; i++) {
|
for (int i = 0; i < amount; i++) {
|
||||||