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:
Diffstat (limited to 'source/blender/makesdna/DNA_brush_types.h')
-rw-r--r--source/blender/makesdna/DNA_brush_types.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_brush_types.h b/source/blender/makesdna/DNA_brush_types.h
index 91e0bc0ffa1..a11e7d77c67 100644
--- a/source/blender/makesdna/DNA_brush_types.h
+++ b/source/blender/makesdna/DNA_brush_types.h
@@ -47,8 +47,6 @@ typedef struct BrushClone {
char _pad[4];
} BrushClone;
-#define GPENCIL_MIN_FILL_FAC 0.05f
-
typedef struct BrushGpencilSettings {
/** Amount of smoothing to apply to newly created strokes. */
float draw_smoothfac;
@@ -133,6 +131,10 @@ typedef struct BrushGpencilSettings {
/** Randomness for Value. */
float random_value;
+ /** Factor to extend stroke extremes using fill tool. */
+ float fill_extend_fac;
+ char _pad3[4];
+
struct CurveMapping *curve_sensitivity;
struct CurveMapping *curve_strength;
struct CurveMapping *curve_jitter;