mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-04 13:13:25 +03:00
0024612: Wrong pcurve of the section curve
Main changes are in "IntWalk_IWalking::TestDeflection(...)" function (IntWalk_IWalking_5.gxx). Some test cases were corrected according to their new behavior.
This commit is contained in:
@@ -1420,13 +1420,14 @@ void IntPatch_Intersection::GeomParamPerfom(const Handle(Adaptor3d_HSurface)& t
|
||||
|
||||
if (!empt)
|
||||
{
|
||||
for(Standard_Integer i = 1; i <= interip.NbLines(); i++)
|
||||
const Standard_Integer aNbLines = interip.NbLines();
|
||||
for(Standard_Integer i = 1; i <= aNbLines; i++)
|
||||
{
|
||||
if(interip.Line(i)->ArcType() != IntPatch_Walking)
|
||||
slin.Append(interip.Line(i));
|
||||
}
|
||||
|
||||
for(Standard_Integer i = 1; i <= interip.NbLines(); i++)
|
||||
for(Standard_Integer i = 1; i <= aNbLines; i++)
|
||||
{
|
||||
if(interip.Line(i)->ArcType() == IntPatch_Walking)
|
||||
slin.Append(interip.Line(i));
|
||||
|
Reference in New Issue
Block a user