Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_color_types.h
| Show First 20 Lines • Show All 43 Lines • ▼ Show 20 Lines | |||||
| typedef struct CurveMapPoint { | typedef struct CurveMapPoint { | ||||
| float x, y; | float x, y; | ||||
| short flag, shorty; /* shorty for result lookup */ | short flag, shorty; /* shorty for result lookup */ | ||||
| } CurveMapPoint; | } CurveMapPoint; | ||||
| /* curvepoint->flag */ | /* curvepoint->flag */ | ||||
| enum { | enum { | ||||
| CUMA_SELECT = 1, | CUMA_SELECT = 1, | ||||
| CUMA_VECTOR = 2 | CUMA_HANDLE_VECTOR = 2, | ||||
| CUMA_HANDLE_AUTO_ANIM = 4, | |||||
| }; | }; | ||||
| typedef struct CurveMap { | typedef struct CurveMap { | ||||
| short totpoint, flag; | short totpoint, flag; | ||||
| float range; /* quick multiply value for reading table */ | float range; /* quick multiply value for reading table */ | ||||
| float mintable, maxtable; /* the x-axis range for the table */ | float mintable, maxtable; /* the x-axis range for the table */ | ||||
| float ext_in[2], ext_out[2]; /* for extrapolated curves, the direction vector */ | float ext_in[2], ext_out[2]; /* for extrapolated curves, the direction vector */ | ||||
| ▲ Show 20 Lines • Show All 128 Lines • Show Last 20 Lines | |||||