Удаление combite3 функций, изменение названий параметров функицй combine и exclude
This commit is contained in:
parent
54c762da14
commit
5425206401
10 changed files with 277 additions and 220 deletions
|
|
@ -53,6 +53,10 @@
|
||||||
<Option compilerVar="CC" />
|
<Option compilerVar="CC" />
|
||||||
</Unit>
|
</Unit>
|
||||||
<Unit filename="printing_utils.h" />
|
<Unit filename="printing_utils.h" />
|
||||||
|
<Unit filename="turn3_combination.c">
|
||||||
|
<Option compilerVar="CC" />
|
||||||
|
</Unit>
|
||||||
|
<Unit filename="turn3_combination.h" />
|
||||||
<Unit filename="vector3_pair_difference.c">
|
<Unit filename="vector3_pair_difference.c">
|
||||||
<Option compilerVar="CC" />
|
<Option compilerVar="CC" />
|
||||||
</Unit>
|
</Unit>
|
||||||
|
|
|
||||||
|
|
@ -1,128 +1,12 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <basic-geometry.h>
|
#include <basic-geometry.h>
|
||||||
|
|
||||||
#ifdef _WIN64
|
|
||||||
#include <windows.h>
|
|
||||||
#else
|
|
||||||
#include <time.h>
|
|
||||||
#endif // _WINDOWS_
|
|
||||||
|
|
||||||
#include "printing_utils.h"
|
#include "printing_utils.h"
|
||||||
#include "vector3_pair_difference.h"
|
#include "vector3_pair_difference.h"
|
||||||
|
#include "turn3_combination.h"
|
||||||
#include "affine3.h"
|
#include "affine3.h"
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
BGC_FP32_Turn3 versor1, versor2, result;
|
|
||||||
} structure_fp32_t;
|
|
||||||
|
|
||||||
structure_fp32_t* allocate_structures(const unsigned int amount)
|
|
||||||
{
|
|
||||||
return calloc(amount, sizeof(structure_fp32_t));
|
|
||||||
}
|
|
||||||
|
|
||||||
structure_fp32_t* make_structures(const unsigned int amount)
|
|
||||||