Продолжение переименования типов и функций

This commit is contained in:
Andrey Pokidov 2025-01-14 19:25:04 +07:00
parent 605afabd94
commit 3b6efaafa9
25 changed files with 768 additions and 916 deletions

View file

@ -31,7 +31,6 @@
<Add directory="../basic-geometry" /> <Add directory="../basic-geometry" />
</Compiler> </Compiler>
<Linker> <Linker>
<Add option="-O2" />
<Add option="-s" /> <Add option="-s" />
<Add library="basic-geometry" /> <Add library="basic-geometry" />
<Add library="m" /> <Add library="m" />

View file

Internal server error - Personal Git Server: Beyond coding. We Forge.

500

Internal server error

Forgejo version: 11.0.1+gitea-1.22.0

@ -10,19 +10,19 @@
#endif // _WINDOWS_ #endif // _WINDOWS_
typedef struct { typedef struct {
// fp32_versor_t versor1, versor2, result; versor_fp32_t versor1, versor2, result;
fp32_matrix3x3_t matrix; matrix3x3_fp32_t matrix;
fp32_vector3_t vector1, vector2; vector3_fp32_t vector1, vector2;
} fp32_structure_t; } structure_fp32_t;
fp32_structure_t* allocate_structures(const unsigned int amount) structure_fp32_t* allocate_structures(const unsigned int amount)
{ {
return calloc(amount, sizeof(fp32_structure_t)); return calloc(amount, sizeof(structure_fp32_t));
} }
fp32_structure_t* make_structures(const unsigned int amount) structure_fp32_t* make_structures(const unsigned int amount)
{ {