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:
authorCampbell Barton <ideasman42@gmail.com>2010-01-01 20:48:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-01-01 20:48:48 +0300
commitd0ec3f428c5bafd46d7bd80dedff15c6c7f9f8e6 (patch)
tree4a012220e713924746cc1c5016b1d718bbd1549d /source/blender/makesdna/DNA_gpencil_types.h
parent7cc72d5830c8440a2b05ef15f1eeba42c615fdc3 (diff)
- grease pencil option to only use the endpoint depths. this makes drawing shapes in 3D easier since it wont stick to every depth the line passes through.
- use a 8x8 area when finding stroke depths since thin lines can get ignored if the point is not close enough to them.
Diffstat (limited to 'source/blender/makesdna/DNA_gpencil_types.h')
-rw-r--r--source/blender/makesdna/DNA_gpencil_types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_gpencil_types.h b/source/blender/makesdna/DNA_gpencil_types.h
index 5755e23675a..332442b9f42 100644
--- a/source/blender/makesdna/DNA_gpencil_types.h
+++ b/source/blender/makesdna/DNA_gpencil_types.h
@@ -150,4 +150,6 @@ typedef struct bGPdata {
#define GP_DATA_DEPTH_VIEW (1<<5)
#define GP_DATA_DEPTH_STROKE (1<<6)
+#define GP_DATA_DEPTH_STROKE_ENDPOINTS (1<<7)
+
#endif /* DNA_GPENCIL_TYPES_H */