From 38df4333d5a382dd9b64242f21dd15cf4c71941c Mon Sep 17 00:00:00 2001 From: Jean-Francois Remacle <jean-francois.remacle@uclouvain.be> Date: Thu, 6 Nov 2008 10:27:53 +0000 Subject: [PATCH] *** empty log message *** --- Geo/Geo.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Geo/Geo.cpp b/Geo/Geo.cpp index 6edd562171..f5f334544e 100644 --- a/Geo/Geo.cpp +++ b/Geo/Geo.cpp @@ -2994,7 +2994,7 @@ bool SplitCurve(int line_id, List_T *vertices_id, List_T *shapes){ for(int i=0;i<List_Nbr(vertices_id);i++){ int id; List_Read(vertices_id,i,&id); - v_break.insert((int)id); + v_break.insert(id); } bool is_periodic=c->beg==c->end; bool first_periodic=true; @@ -3020,8 +3020,10 @@ bool SplitCurve(int line_id, List_T *vertices_id, List_T *shapes){ last_periodic=true; } } - Curve *cnew=_create_splitted_curve(c,new_list); - List_Add(shapes,&cnew); + if(List_Nbr(new_list)>1){ + Curve *cnew=_create_splitted_curve(c,new_list); + List_Add(shapes,&cnew); + } //replace original curve by the new curves in all surfaces //(and for the opposite curve) List_T *rshapes=List_Create(2,1,sizeof(Shape)); -- GitLab