Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_gpencil_types.h
| Show First 20 Lines • Show All 316 Lines • ▼ Show 20 Lines | typedef struct bGPDstroke { | ||||
| /** Vertex Color for Fill (one for all stroke, A=mix factor). */ | /** Vertex Color for Fill (one for all stroke, A=mix factor). */ | ||||
| float vert_color_fill[4]; | float vert_color_fill[4]; | ||||
| /** Curve used to edit the stroke using Bezier handlers. */ | /** Curve used to edit the stroke using Bezier handlers. */ | ||||
| struct bGPDcurve *editcurve; | struct bGPDcurve *editcurve; | ||||
| bGPDstroke_Runtime runtime; | bGPDstroke_Runtime runtime; | ||||
| void *_pad5; | |||||
| } bGPDstroke; | } bGPDstroke; | ||||
| /** #bGPDstroke.flag */ | /** #bGPDstroke.flag */ | ||||
| typedef enum eGPDstroke_Flag { | typedef enum eGPDstroke_Flag { | ||||
| /* stroke is in 3d-space */ | /* stroke is in 3d-space */ | ||||
| GP_STROKE_3DSPACE = (1 << 0), | GP_STROKE_3DSPACE = (1 << 0), | ||||
| /* stroke is in 2d-space */ | /* stroke is in 2d-space */ | ||||
| GP_STROKE_2DSPACE = (1 << 1), | GP_STROKE_2DSPACE = (1 << 1), | ||||
| ▲ Show 20 Lines • Show All 539 Lines • Show Last 20 Lines | |||||