From ac7ff55f110e9c0b9e6cef2557d8cd06348c45fa Mon Sep 17 00:00:00 2001 From: Antonioya Date: Thu, 15 Sep 2016 13:29:26 +0200 Subject: GPencil: New subdivide stroke operator In some situations the artist needs to subdivide a stroke created with few points before, specially for sculpting. The subdivision is done for any pair of continuous selected points in the same stroke. The operator can be activated in edit mode with W key and has a parameter for number of cuts. --- release/scripts/startup/bl_ui/properties_grease_pencil_common.py | 1 + 1 file changed, 1 insertion(+) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py index 4299cf6035d..9432be39d1d 100644 --- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py +++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py @@ -227,6 +227,7 @@ class GreasePencilStrokeEditPanel: layout.separator() col = layout.column(align=True) + col.operator("gpencil.stroke_subdivide", text="Subdivide") col.operator("gpencil.stroke_join", text="Join").type = 'JOIN' col.operator("gpencil.stroke_join", text="Join & Copy").type = 'JOINCOPY' col.operator("gpencil.stroke_flip", text="Flip Direction") -- cgit v1.2.3