From 086893f461237ad2e41904eaff202d0d9cfa23d1 Mon Sep 17 00:00:00 2001 From: FtpSantos Date: Wed, 29 May 2024 14:05:08 +0100 Subject: [PATCH] 0033710: Canonical Recognition - Add ShapeBuild_ReShape optional parameter to retrieve exact history of modifications Passed ShapeBuild_ReShape to recursive call to retrieve complete change history Up to date with master --- src/ShapeCustom/ShapeCustom.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ShapeCustom/ShapeCustom.cxx b/src/ShapeCustom/ShapeCustom.cxx index 5e4ab7f82e..c93f7ba82b 100644 --- a/src/ShapeCustom/ShapeCustom.cxx +++ b/src/ShapeCustom/ShapeCustom.cxx @@ -69,7 +69,7 @@ TopoDS_Shape ShapeCustom::ApplyModifier (const TopoDS_Shape &S, if ( context.IsBound ( shape ) ) res = context.Find ( shape ).Oriented ( shape.Orientation() ); else - res = ApplyModifier ( shape, M, context ,MD, aRange); + res = ApplyModifier ( shape, M, context ,MD, aRange, aReShape ); if ( ! res.IsSame ( shape ) ) { context.Bind ( shape, res );