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 687a8ebf91407a63730037ec662e7e6ebd0a39b1
parent e0fc1655ebffb353eb29ba8143ea0da317463144
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Fri, 13 Apr 2018 14:45:30 +0200

Fix Debug build (missing var rename in assert).

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

diff --git a/src/senc_scene_analyze.c b/src/senc_scene_analyze.c @@ -811,7 +811,8 @@ collect_and_link_neighbours if(p_id) { neighbourhood = darray_neighbourhood_data_get(&neighbourhood_by_edge) + *p_id; - ASSERT(n->edge.vrtx0 == edge.vrtx0 && n->edge.vrtx1 == edge.vrtx1); + ASSERT(neighbourhood->edge.vrtx0 == edge.vrtx0 + && neighbourhood->edge.vrtx1 == edge.vrtx1); } else { /* Create id */ edge_id_t id;