D1705: Fix Grease Pencil Fill for Concave Shapes

Improve filling for concave shapes using a triangulation of the stroke.
The triangulation information is saved in an internal cache and only is
recalculated if the stroke changes.

The triangulation is not saved in .blend file.

Reviewers: aligorith

Maniphest Tasks: T47102

Differential Revision: https://developer.blender.org/D1705
This commit is contained in:
Antonio Vazquez
2016-04-29 01:10:33 +12:00
committed by Joshua Leung
parent 0411cfea9d
commit 1d5c71bca7
12 changed files with 281 additions and 39 deletions

View File

@@ -576,6 +576,7 @@ class GreasePencilDataPanel:
col = split.column(align=True)
col.prop(gpl, "line_width", slider=True)
col.prop(gpl, "use_volumetric_strokes")
col.prop(gpl, "use_hq_fill")
col = split.column(align=True)
col.prop(gpl, "show_x_ray")