From 15ffc0f2df167f652bfa679aa9f7f37047cd5995 Mon Sep 17 00:00:00 2001 From: jfa Date: Tue, 22 Mar 2005 09:16:47 +0000 Subject: [PATCH] PAL8395: Fix pb. with bug2extraEdges.py --- src/GEOMAlgo/BlockFix.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/GEOMAlgo/BlockFix.cxx b/src/GEOMAlgo/BlockFix.cxx index be4d48f62..aadc176bb 100644 --- a/src/GEOMAlgo/BlockFix.cxx +++ b/src/GEOMAlgo/BlockFix.cxx @@ -60,8 +60,8 @@ static void FixResult(const TopoDS_Shape& result, TopLoc_Location L; Handle(Geom_Surface) Surf = BRep_Tool::Surface(aFace,L); - if (Surf->IsKind(STANDARD_TYPE(Geom_SphericalSurface)) || - Surf->IsKind(STANDARD_TYPE(Geom_CylindricalSurface))) { + if( Surf->IsKind(STANDARD_TYPE(Geom_SphericalSurface)) || + Surf->IsKind(STANDARD_TYPE(Geom_CylindricalSurface)) ) { Standard_Integer nbWires = 0; for (TopExp_Explorer ex_w(aFace,TopAbs_WIRE); ex_w.More(); ex_w.Next()) { @@ -92,7 +92,7 @@ static void FixResult(const TopoDS_Shape& result, } } - isDone |= sfw->FixLacking(); + //isDone |= sfw->FixLacking(); // commented by skl 22.03.2005 (PAL8395) // remove neighbour seam edges if(isDone) { -- 2.39.2