Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_gpencil_types.h
| Show First 20 Lines • Show All 341 Lines • ▼ Show 20 Lines | typedef enum eGPDstroke_Flag { | ||||
| /* Flag used to indicate that stroke is closed and draw edge between last and first point */ | /* Flag used to indicate that stroke is closed and draw edge between last and first point */ | ||||
| GP_STROKE_CYCLIC = (1 << 7), | GP_STROKE_CYCLIC = (1 << 7), | ||||
| /* Flag used to indicate that stroke is used for fill close and must use | /* Flag used to indicate that stroke is used for fill close and must use | ||||
| * fill color for stroke and no fill area */ | * fill color for stroke and no fill area */ | ||||
| GP_STROKE_NOFILL = (1 << 8), | GP_STROKE_NOFILL = (1 << 8), | ||||
| /* Flag to indicated that the editcurve has been changed and the stroke needs to be updated with | /* Flag to indicated that the editcurve has been changed and the stroke needs to be updated with | ||||
| * the curve data */ | * the curve data */ | ||||
| GP_STROKE_NEEDS_CURVE_UPDATE = (1 << 9), | GP_STROKE_NEEDS_CURVE_UPDATE = (1 << 9), | ||||
| /* Flag to indicate that a stroke is used only for help, and will not affect rendering or fill */ | |||||
| GP_STROKE_HELP = (1 << 10), | |||||
| /* only for use with stroke-buffer (while drawing arrows) */ | /* only for use with stroke-buffer (while drawing arrows) */ | ||||
| GP_STROKE_USE_ARROW_START = (1 << 12), | GP_STROKE_USE_ARROW_START = (1 << 12), | ||||
| /* only for use with stroke-buffer (while drawing arrows) */ | /* only for use with stroke-buffer (while drawing arrows) */ | ||||
| GP_STROKE_USE_ARROW_END = (1 << 13), | GP_STROKE_USE_ARROW_END = (1 << 13), | ||||
| /* Tag for update geometry */ | /* Tag for update geometry */ | ||||
| GP_STROKE_TAG = (1 << 14), | GP_STROKE_TAG = (1 << 14), | ||||
| /* only for use with stroke-buffer (while drawing eraser) */ | /* only for use with stroke-buffer (while drawing eraser) */ | ||||
| GP_STROKE_ERASER = (1 << 15), | GP_STROKE_ERASER = (1 << 15), | ||||
| ▲ Show 20 Lines • Show All 551 Lines • Show Last 20 Lines | |||||