From 75c5def578ee1a374ed06f1de364b418653b2d6c Mon Sep 17 00:00:00 2001 From: vsr Date: Fri, 20 Jun 2014 11:35:25 +0400 Subject: [PATCH] 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 --- src/BRepFill/BRepFill_PipeShell.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/BRepFill/BRepFill_PipeShell.cxx b/src/BRepFill/BRepFill_PipeShell.cxx index 08ad18b50a..48880fb148 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)); -- 2.20.1