Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_curve.h
| Show First 20 Lines • Show All 72 Lines • ▼ Show 20 Lines | |||||
| /* not 3d and not unfilled */ | /* not 3d and not unfilled */ | ||||
| #define CU_DO_2DFILL(cu) ((((cu)->flag & CU_3D) == 0) && (((cu)->flag & (CU_FRONT | CU_BACK)) != 0)) | #define CU_DO_2DFILL(cu) ((((cu)->flag & CU_3D) == 0) && (((cu)->flag & (CU_FRONT | CU_BACK)) != 0)) | ||||
| /* ** Curve ** */ | /* ** Curve ** */ | ||||
| void BKE_curve_free(struct Curve *cu); | void BKE_curve_free(struct Curve *cu); | ||||
| void BKE_curve_editfont_free(struct Curve *cu); | void BKE_curve_editfont_free(struct Curve *cu); | ||||
| void BKE_curve_init(struct Curve *cu); | void BKE_curve_init(struct Curve *cu); | ||||
| struct Curve *BKE_curve_add(struct Main *bmain, const char *name, int type); | struct Curve *BKE_curve_add(struct Main *bmain, const char *name, int type); | ||||
| void BKE_curve_copy_data(struct Main *bmain, struct Curve *cu_dst, const struct Curve *cu_src, const int flag); | |||||
| struct Curve *BKE_curve_copy(struct Main *bmain, const struct Curve *cu); | struct Curve *BKE_curve_copy(struct Main *bmain, const struct Curve *cu); | ||||
| void BKE_curve_make_local(struct Main *bmain, struct Curve *cu, const bool lib_local); | void BKE_curve_make_local(struct Main *bmain, struct Curve *cu, const bool lib_local); | ||||
| short BKE_curve_type_get(struct Curve *cu); | short BKE_curve_type_get(struct Curve *cu); | ||||
| void BKE_curve_type_test(struct Object *ob); | void BKE_curve_type_test(struct Object *ob); | ||||
| void BKE_curve_curve_dimension_update(struct Curve *cu); | void BKE_curve_curve_dimension_update(struct Curve *cu); | ||||
| void BKE_curve_boundbox_calc(struct Curve *cu, float r_loc[3], float r_size[3]); | void BKE_curve_boundbox_calc(struct Curve *cu, float r_loc[3], float r_size[3]); | ||||
| struct BoundBox *BKE_curve_boundbox_get(struct Object *ob); | struct BoundBox *BKE_curve_boundbox_get(struct Object *ob); | ||||
| ▲ Show 20 Lines • Show All 135 Lines • Show Last 20 Lines | |||||