mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0032196: Modeling Algorithms - Invalid section curve
Modify the method IntWalk_IWalking::ComputeCloseLine: add condition for check of update of variable containing current solution
This commit is contained in:
parent
0461e7fd03
commit
f0ca3c819f
@ -386,12 +386,16 @@ void IntWalk_IWalking::ComputeCloseLine(const TColStd_SequenceOfReal& Umult,
|
|||||||
StepSign = -1;
|
StepSign = -1;
|
||||||
StatusPrecedent = IntWalk_OK;
|
StatusPrecedent = IntWalk_OK;
|
||||||
PasC = PasSav;
|
PasC = PasSav;
|
||||||
if (aStatus == IntWalk_ArretSurPointPrecedent) {
|
//Check if <Psol> has been really updated
|
||||||
CurrentLine->AddPoint(Psol);
|
if (Arrive || Rajout || (!ArretAjout && Cadre && SaveN <= 0))
|
||||||
OpenLine(0,Psol,Pnts1,Func,CurrentLine);
|
{
|
||||||
}
|
if (aStatus == IntWalk_ArretSurPointPrecedent) {
|
||||||
else {
|
CurrentLine->AddPoint(Psol);
|
||||||
OpenLine(-lines.Length()-1,Psol,Pnts1,Func,CurrentLine);
|
OpenLine(0,Psol,Pnts1,Func,CurrentLine);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
OpenLine(-lines.Length()-1,Psol,Pnts1,Func,CurrentLine);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
//Remove <SaveN> from <seqAlone> and, if it is first found point,
|
//Remove <SaveN> from <seqAlone> and, if it is first found point,
|
||||||
//from <seqAjout> too
|
//from <seqAjout> too
|
||||||
|
46
tests/bugs/modalg_7/bug32196
Normal file
46
tests/bugs/modalg_7/bug32196
Normal file
@ -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"
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user