From 8f97ff05569955ab3629c05be57fb3542269c6ed Mon Sep 17 00:00:00 2001 From: vsr Date: Fri, 20 Feb 2015 16:21:05 +0300 Subject: [PATCH] 0022862: EDF GEOM: MakeFillet returns a compound - additional change, to fix the same problem for chamfer --- src/GEOMImpl/GEOMImpl_ChamferDriver.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;