Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2017-01-18 17:20:44 +0300
committerJoshua Leung <aligorith@gmail.com>2017-01-18 17:20:44 +0300
commit6d868d9f48a35a0576e9e4e7b6442bdc0fc8d282 (patch)
tree712995d734c76a781ea5f28c964bd7c08384c341 /release
parent00edc600b0319fc239ae4cb9c0a98452b2d6c74e (diff)
Reproject Strokes - To Surface/Geometry
Experimental option for the Reproject Strokes operator to project strokes on to geometry, instead of only doing this in a planar (i.e. parallel to viewplane) way. The current implementation is quite rough, and may need to be improved before it is really ready for use. Potential issues: * Loss of precision (i.e. stairstepping artifacts) from the 3D -> 2D -> 3D conversion as we don't have float version of one of the projection funcs * Jagged depth if there are gaps, since it will default back to the 3d-cursor plane if no geometry was found (instead of doing some fancy interpolation scheme) * I'm not sure if it's that useful for adapting GP strokes to deforming geometry yet...
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_grease_pencil_common.py2
1 files changed, 1 insertions, 1 deletions
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 3df60584d3b..4529c127839 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -248,7 +248,7 @@ class GreasePencilStrokeEditPanel:
if is_3d_view:
layout.separator()
- layout.operator("gpencil.reproject")
+ layout.operator_menu_enum("gpencil.reproject", text="Reproject Strokes...", property="type")
class GreasePencilInterpolatePanel: