From: vsr Date: Fri, 20 Jun 2014 07:35:25 +0000 (+0400) Subject: 0024985: Control of maximum degree and number of segment in the Pipe Shell algorithm X-Git-Tag: V6_8_0_beta~246 X-Git-Url: http://git.dev.opencascade.org/gitweb/?p=occt.git;a=commitdiff_plain;h=75c5def578ee1a374ed06f1de364b418653b2d6c;hp=af4b4ba9e50099b653b9e9fef9efb96bb90d4137 0024985: Control of maximum degree and number of segment in the Pipe Shell algorithm Fix merge problem: pass myMaxDegree and myMaxSegments to BRepFill_Sweep algorithm --- diff --git a/src/BRepFill/BRepFill_PipeShell.cxx b/src/BRepFill/BRepFill_PipeShell.cxx index 08ad18b..48880fb 100644 --- a/src/BRepFill/BRepFill_PipeShell.cxx +++ b/src/BRepFill/BRepFill_PipeShell.cxx @@ -765,7 +765,8 @@ void BRepFill_PipeShell::SetForceApproxC1(const Standard_Boolean ForceApproxC1) TopTools_MapOfShape Dummy; BRepFill_DataMapOfShapeHArray2OfShape Dummy2; BRepFill_DataMapOfShapeHArray2OfShape Dummy3; - MkSw.Build(Dummy, Dummy2, Dummy3, myTransition, theContinuity); + MkSw.Build(Dummy, Dummy2, Dummy3, myTransition, theContinuity, + GeomFill_Location, myMaxDegree, myMaxSegments); myStatus = myLocation->GetStatus(); Ok = (MkSw.IsDone() && (myStatus == GeomFill_PipeOk));