Упорядочивание проекта

This commit is contained in:
Andrey Pokidov 2025-11-26 22:43:29 +07:00
parent 0dcd9c0d4d
commit 89dfd7644b
32 changed files with 1730 additions and 1719 deletions

View file

@ -80,7 +80,7 @@ inline void bgc_slerp_make_shortened_fp32(const BgcVersorFP32* start, const BgcV
BgcVersorFP32 augment;
bgc_versor_exclude_fp32(end, start, &augment);
bgc_versor_shorten_fp32(&augment, &augment);
bgc_versor_shorten_fp32(&augment);
bgc_slerp_make_fp32(start, &augment, slerp);
}
@ -90,7 +90,7 @@ inline void bgc_slerp_make_shortened_fp64(const BgcVersorFP64* start, const BgcV
BgcVersorFP64 augment;
bgc_versor_exclude_fp64(end, start, &augment);
bgc_versor_shorten_fp64(&augment, &augment);
bgc_versor_shorten_fp64(&augment);
bgc_slerp_make_fp64(start, &augment, slerp);
}