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 cd70a30ab8923c2a5405f1d7beb8950dc7e045f4
parent 4a629bf24dda3f695b5295ceb55385180822b0fa
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Mon,  5 Nov 2018 09:54:50 +0100

Spacing

Diffstat:
Msrc/senc_scene_analyze.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/senc_scene_analyze.c b/src/senc_scene_analyze.c @@ -791,13 +791,13 @@ collect_and_link_neighbours if(neighbour_info->angle <= PI / 4) { ASSERT(n.pos.y); neighbour_info->normal_toward_next_neighbour = (n.pos.y > 0); - } else if (neighbour_info->angle <= 3 * PI / 4) { + } else if(neighbour_info->angle <= 3 * PI / 4) { ASSERT(n.pos.x); neighbour_info->normal_toward_next_neighbour = (n.pos.x < 0); - } else if (neighbour_info->angle <= 5 * PI / 4) { + } else if(neighbour_info->angle <= 5 * PI / 4) { ASSERT(n.pos.y); neighbour_info->normal_toward_next_neighbour = (n.pos.y < 0); - } else if (neighbour_info->angle <= 7 * PI / 4) { + } else if(neighbour_info->angle <= 7 * PI / 4) { ASSERT(n.pos.x); neighbour_info->normal_toward_next_neighbour = (n.pos.x > 0); } else {