star-enclosures-3d

Extract enclosures from 3D geometry
git clone git://git.meso-star.fr/star-enclosures-3d.git
Log | Files | Refs | README | LICENSE

commit 0559c985183b74253979b287914be9084663fdb6
parent 040b3aca3d7d532fe0102b2eb1932e0d572f7e3a
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Tue, 28 Jan 2020 15:57:45 +0100

Make huge tests smaller

Diffstat:
Msrc/test_senc_many_enclosures.c | 4++--
Msrc/test_senc_many_triangles.c | 2+-
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/test_senc_many_enclosures.c b/src/test_senc_many_enclosures.c @@ -17,8 +17,8 @@ * cylinders instead of 4*4*4, thus making it impossible to define the geometry * through static arrays. */ -#define NB_CYL_X 64 -#define NB_CYL_Y 64 +#define NB_CYL_X 32 +#define NB_CYL_Y 32 #define NB_CYL_Z 64 /* 64^3 = 262144 cylinders */ #define NB_CYL (NB_CYL_X * NB_CYL_Y * NB_CYL_Z) diff --git a/src/test_senc_many_triangles.c b/src/test_senc_many_triangles.c @@ -18,7 +18,7 @@ * through static arrays. */ #define NB_CYL_X 2 -#define NB_CYL_Y 2 +#define NB_CYL_Y 1 #define NB_CYL_Z 1 /* 4 cylinders */ #define NB_CYL (NB_CYL_X * NB_CYL_Y * NB_CYL_Z)