Исправление названий в документации

This commit is contained in:
Andrey Pokidov 2025-02-05 00:03:55 +07:00
parent c8f5a3f077
commit 847c022533
13 changed files with 104 additions and 104 deletions

View file

@ -6,11 +6,11 @@ The functions reset the state of versors to the state of no turn:
For the **BgFP32Versor** type the function is:
void bg_fp32_versor_reset(BgFP32Versor* versor);
void bgc_versor_reset_fp32(BgFP32Versor* versor);
For the **BgFP64Versor** type the function is:
void bg_fp64_versor_reset(BgFP64Versor* versor);
void bgc_versor_reset_fp64(BgFP64Versor* versor);
These functions are good for setting the initial state of variables and fields
of **BgFP32Versor** and **BgFP64Versor** types.
@ -23,7 +23,7 @@ Example of usage:
int main() {
BgFP32Versor versor;
bg_fp32_versor_reset(&versor);
bgc_versor_reset_fp32(&versor);
printf("Versor: (%f, %f, %f, %f)\n", versor.s0, versor.x1, versor.x2, versor.x3);