solstice-solver

Solver library of the solstice app
git clone git://git.meso-star.com/solstice-solver.git
Log | Files | Refs | README | LICENSE

commit 37ac445de881af69605768ae1967bdf0ea999ca5
parent 70f170084b8c446dc3f66faa4596d623fa7f4a7e
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Thu,  1 Sep 2016 15:51:32 +0200

Rename a test geometry

Diffstat:
Msrc/test_ssol_geometries.h | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/test_ssol_geometries.h b/src/test_ssol_geometries.h @@ -25,20 +25,20 @@ struct desc { * Plane ******************************************************************************/ -static const float plane_walls [] = { +static const float square_walls [] = { -1, -1, 0, 1, -1, 0, 1, 1, 0, -1, 1, 0 }; -const unsigned plane_walls_nverts = sizeof(plane_walls) / sizeof(float[3]); +const unsigned square_walls_nverts = sizeof(square_walls) / sizeof(float[3]); -const unsigned plane_walls_ids [] = { +const unsigned square_walls_ids [] = { 0, 1, 2, 2, 3, 0 }; -const unsigned plane_walls_ntris = sizeof(plane_walls_ids) / sizeof(unsigned[3]); +const unsigned square_walls_ntris = sizeof(square_walls_ids) / sizeof(unsigned[3]); -static struct desc plane_walls_desc = { plane_walls, plane_walls_ids }; +static struct desc square_walls_desc = { square_walls, square_walls_ids }; /******************************************************************************* * Box