diff --git a/src/IntWalk/IntWalk_IWalking_4.gxx b/src/IntWalk/IntWalk_IWalking_4.gxx index c2b236a33a..8965974e8c 100644 --- a/src/IntWalk/IntWalk_IWalking_4.gxx +++ b/src/IntWalk/IntWalk_IWalking_4.gxx @@ -386,12 +386,16 @@ void IntWalk_IWalking::ComputeCloseLine(const TColStd_SequenceOfReal& Umult, StepSign = -1; StatusPrecedent = IntWalk_OK; PasC = PasSav; - if (aStatus == IntWalk_ArretSurPointPrecedent) { - CurrentLine->AddPoint(Psol); - OpenLine(0,Psol,Pnts1,Func,CurrentLine); - } - else { - OpenLine(-lines.Length()-1,Psol,Pnts1,Func,CurrentLine); + //Check if has been really updated + if (Arrive || Rajout || (!ArretAjout && Cadre && SaveN <= 0)) + { + if (aStatus == IntWalk_ArretSurPointPrecedent) { + CurrentLine->AddPoint(Psol); + OpenLine(0,Psol,Pnts1,Func,CurrentLine); + } + else { + OpenLine(-lines.Length()-1,Psol,Pnts1,Func,CurrentLine); + } } //Remove from and, if it is first found point, //from too diff --git a/tests/bugs/modalg_7/bug32196 b/tests/bugs/modalg_7/bug32196 new file mode 100644 index 0000000000..07a9fcbde1 --- /dev/null +++ b/tests/bugs/modalg_7/bug32196 @@ -0,0 +1,46 @@ +puts "================================" +puts " 0032196: Invalid section curve" +puts "================================" +puts "" + +restore [locate_data_file bug32136_obj.brep] s +restore [locate_data_file bug32136_tools.brep] t + +explode s f +explode t +explode t_3 f + +set log [bopcurves s_44 t_3_4 -2d] + +if {![regexp "has no 3d curves" ${log}] || + ![regexp "has no 3d points" ${log}]} { + puts "Error: the result contains curves or points" +} + +set log [bopcurves s_2 t_3_82 -2d] + +if {![regexp "has no 3d curves" ${log}] || + ![regexp "has no 3d points" ${log}]} { + puts "Error: the result contains curves or points" +} + +set log [bopcurves s_2 t_3_95 -2d] + +if {![regexp "has no 3d curves" ${log}] || + ![regexp "has no 3d points" ${log}]} { + puts "Error: the result contains curves or points" +} + +set log [bopcurves s_2 t_3_108 -2d] + +if {![regexp "has no 3d curves" ${log}] || + ![regexp "has no 3d points" ${log}]} { + puts "Error: the result contains curves or points" +} + +set log [bopcurves s_52 t_3_43 -2d] + +if {![regexp "has no 3d curves" ${log}] || + ![regexp "has no 3d points" ${log}]} { + puts "Error: the result contains curves or points" +}