Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_curve.c
| Show First 20 Lines • Show All 135 Lines • ▼ Show 20 Lines | const EnumPropertyItem rna_enum_beztriple_interpolation_mode_items[] = { | ||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| }; | }; | ||||
| #ifndef RNA_RUNTIME | #ifndef RNA_RUNTIME | ||||
| static const EnumPropertyItem curve_type_items[] = { | static const EnumPropertyItem curve_type_items[] = { | ||||
| {CU_POLY, "POLY", 0, "Poly", ""}, | {CU_POLY, "POLY", 0, "Poly", ""}, | ||||
| {CU_BEZIER, "BEZIER", 0, "Bezier", ""}, | {CU_BEZIER, "BEZIER", 0, "Bezier", ""}, | ||||
| {CU_BSPLINE, "BSPLINE", 0, "BSpline", ""}, | |||||
| {CU_CARDINAL, "CARDINAL", 0, "Cardinal", ""}, | |||||
| {CU_NURBS, "NURBS", 0, "Ease", ""}, | {CU_NURBS, "NURBS", 0, "Ease", ""}, | ||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| }; | }; | ||||
| #endif | #endif | ||||
| static const EnumPropertyItem curve3d_fill_mode_items[] = { | static const EnumPropertyItem curve3d_fill_mode_items[] = { | ||||
| {0, "FULL", 0, "Full", ""}, | {0, "FULL", 0, "Full", ""}, | ||||
| {CU_BACK, "BACK", 0, "Back", ""}, | {CU_BACK, "BACK", 0, "Back", ""}, | ||||
| ▲ Show 20 Lines • Show All 992 Lines • Show Last 20 Lines | |||||