Переход на парадигму Destination first в порядке параметров функий
This commit is contained in:
parent
f7e41645fe
commit
03627f4401
41 changed files with 1570 additions and 1978 deletions
|
|
@ -41,18 +41,18 @@ BGC_FP32_Affine3* _create_bgc_affine3_random_list(int affine_amount)
|
|||
|
||||
for (int i = 0; i < affine_amount; i++) {
|
||||
bgc_fp32_versor_make(
|
||||
&position.turn,
|
||||
get_random_value_fp32(),
|
||||
get_random_value_fp32(),
|
||||
get_random_value_fp32(),
|
||||
get_random_value_fp32(),
|
||||
&position.turn
|
||||
get_random_value_fp32()
|
||||
);
|
||||
|
||||
position.shift.x1 = get_random_value_fp32();
|
||||
position.shift.x2 = get_random_value_fp32();
|
||||
position.shift.x3 = get_random_value_fp32();
|
||||
|
||||
bgc_fp32_position3_get_outward_affine(&position, &affines[i]);
|
||||