From: vsr Date: Fri, 20 Feb 2015 13:21:05 +0000 (+0300) Subject: 0022862: EDF GEOM: MakeFillet returns a compound X-Git-Tag: V7_6_0a1~40 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=8f97ff05569955ab3629c05be57fb3542269c6ed;p=modules%2Fgeom.git 0022862: EDF GEOM: MakeFillet returns a compound - additional change, to fix the same problem for chamfer --- diff --git a/src/GEOMImpl/GEOMImpl_ChamferDriver.cxx b/src/GEOMImpl/GEOMImpl_ChamferDriver.cxx index b651f2662..a32a01e68 100644 --- a/src/GEOMImpl/GEOMImpl_ChamferDriver.cxx +++ b/src/GEOMImpl/GEOMImpl_ChamferDriver.cxx @@ -255,7 +255,7 @@ Standard_Integer GEOMImpl_ChamferDriver::Execute(TFunction_Logbook& log) const if (!fill.IsDone()) { StdFail_NotDone::Raise("Chamfer can not be computed on the given shape with the given parameters"); } - aShape = fill.Shape(); + aShape = GEOMUtils::ReduceCompound( fill.Shape() ); if (aShape.IsNull()) return 0;