Изменение полей версора на константные / Making versor's fields constant

This commit is contained in:
Andrey Pokidov 2024-11-21 14:12:51 +07:00
parent e7616ae80c
commit 23fcdc2c28
10 changed files with 423 additions and 425 deletions

View file

@ -52,7 +52,7 @@ BgFP32Versor * make_random_versors(const unsigned int amount)
void print_versor(const BgFP32Versor* versor)
{
printf("(%f, %f, %f, %f)\n", versor->_s0, versor->_x1, versor->_x2, versor->_x3);
printf("(%f, %f, %f, %f)\n", versor->s0, versor->x1, versor->x2, versor->x3);
}
void print_vector(const BgFP32Vector3* vector)