From 3628c3055cd9aee72f05081f4f2dd4f00f32b4a0 Mon Sep 17 00:00:00 2001 From: alexneufeld Date: Sun, 19 Mar 2023 15:23:16 -0600 Subject: [PATCH] fix incorrect docstring for Part.Shape.extrude method --- src/Mod/Part/App/TopoShapePy.xml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Mod/Part/App/TopoShapePy.xml b/src/Mod/Part/App/TopoShapePy.xml index 1cdd5ede34..1d49dc3255 100644 --- a/src/Mod/Part/App/TopoShapePy.xml +++ b/src/Mod/Part/App/TopoShapePy.xml @@ -115,8 +115,10 @@ importBrepFromString(str,False) to not display a progress bar. - Extrude the shape along a direction. -extrude(direction, length) + Extrude the shape along a vector. +extrude(vector) -> Shape +-- +Shp2 = Shp1.extrude(Vector(0,0,10)) - extrude the shape 10 mm in the +Z direction.