Compare commits
No commits in common. "master" and "0.2.0-dev" have entirely different histories.
110 changed files with 6334 additions and 7251 deletions
|
|
@ -1,10 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
||||
<CodeBlocks_workspace_file>
|
||||
<Workspace title="Workspace">
|
||||
<Project filename="basic-geometry/basic-geometry.cbp" />
|
||||
<Project filename="basic-geometry-dev/basic-geometry-dev.cbp">
|
||||
<Depends filename="basic-geometry/basic-geometry.cbp" />
|
||||
</Project>
|
||||
<Project filename="basic-geometry/basic-geometry.cbp" />
|
||||
<Project filename="basic-geometry-test/basic-geometry-test.cbp">
|
||||
<Depends filename="basic-geometry/basic-geometry.cbp" />
|
||||
</Project>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
Programming language: C (C99)
|
||||
|
||||
Version: 0.3.0-dev
|
||||
Version: 0.2.0-dev
|
||||
|
||||
License: Apache-2.0
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
Язык программирования: Си (C99)
|
||||
|
||||
Версия: 0.3.0-dev
|
||||
Версия: 0.2.0-dev
|
||||
|
||||
Лицензия: Apache-2.0
|
||||
|
||||
|
|
|
|||
|
|
@ -9,16 +9,16 @@
|
|||
#include <time.h>
|
||||
#endif // _WINDOWS_
|
||||
|
||||
BGC_FP32_Affine3* _create_bgc_affine3_list(int affine_amount)
|
||||
BgcAffine3FP32* _create_bgc_affine3_list(int affine_amount)
|
||||
{
|
||||
BGC_FP32_Affine3* affines = malloc(affine_amount * sizeof(BGC_FP32_Affine3));
|
||||
BgcAffine3FP32* affines = malloc(affine_amount * sizeof(BgcAffine3FP32));
|
||||
|
||||
if (affines == 0) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
for (int i = 0; i < affine_amount; i++) {
|
||||
bgc_fp32_affine3_reset(&affines[i]);
|
||||