From a2ff7810d8381a53ea48afcce66ebf16065e8624 Mon Sep 17 00:00:00 2001 From: msv Date: Tue, 8 Dec 2015 16:01:26 +0300 Subject: [PATCH] 0026967: BRepFill_OffsetWire should not copy plane if Alt == 0.0 In the class BRepFill_OffsetWire the base plane is not copied anymore if altitude parameter is equal to zero. --- src/BRepFill/BRepFill_OffsetWire.cxx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/BRepFill/BRepFill_OffsetWire.cxx b/src/BRepFill/BRepFill_OffsetWire.cxx index 3e03686bd5..1de233495c 100644 --- a/src/BRepFill/BRepFill_OffsetWire.cxx +++ b/src/BRepFill/BRepFill_OffsetWire.cxx @@ -299,7 +299,7 @@ static Standard_Boolean KPartCircle myShape.Orientation(E.Orientation()); myShape.Location(L); - if (Alt != 0.) { + if (fabs(Alt) > gp::Resolution()) { BRepAdaptor_Surface S(mySpine,0); gp_Ax1 Nor = S.Plane().Axis(); gp_Trsf T; @@ -775,12 +775,14 @@ void BRepFill_OffsetWire::PerformWithBiLo TopTools_ListOfShape EmptyList; TColStd_SequenceOfReal EmptySeqOfReal; - Standard_Real ALT = Alt; Handle(Geom_Plane) RefPlane = Handle(Geom_Plane)::DownCast(BRep_Tool::Surface(myWorkSpine)); - if ( myWorkSpine.Orientation() == TopAbs_REVERSED) ALT = -Alt; - RefPlane = Handle(Geom_Plane)::DownCast - (RefPlane->Translated( ALT * gp_Vec(RefPlane->Axis().Direction() ))); + if (fabs(Alt) > gp::Resolution()) { + Standard_Real anAlt = Alt; + if ( myWorkSpine.Orientation() == TopAbs_REVERSED) anAlt = -Alt; + RefPlane = Handle(Geom_Plane)::DownCast + (RefPlane->Translated( anAlt * gp_Vec(RefPlane->Axis().Direction() ))); + } //--------------------------------------------------------------- // Construction of Circles and OffsetCurves