Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_mask.h
| Show First 20 Lines • Show All 165 Lines • ▼ Show 20 Lines | void BKE_mask_coord_to_movieclip(struct MovieClip *clip, | ||||
| const float co[2]); | const float co[2]); | ||||
| void BKE_mask_coord_to_image(struct Image *image, | void BKE_mask_coord_to_image(struct Image *image, | ||||
| struct ImageUser *iuser, | struct ImageUser *iuser, | ||||
| float r_co[2], | float r_co[2], | ||||
| const float co[2]); | const float co[2]); | ||||
| /* parenting */ | /* parenting */ | ||||
| void BKE_mask_evaluate_all_masks(struct Main *bmain, float ctime, const bool do_newframe); | |||||
| void BKE_mask_evaluate(struct Mask *mask, const float ctime, const bool do_newframe); | void BKE_mask_evaluate(struct Mask *mask, const float ctime, const bool do_newframe); | ||||
| void BKE_mask_layer_evaluate(struct MaskLayer *masklay, const float ctime, const bool do_newframe); | void BKE_mask_layer_evaluate(struct MaskLayer *masklay, const float ctime, const bool do_newframe); | ||||
| void BKE_mask_parent_init(struct MaskParent *parent); | void BKE_mask_parent_init(struct MaskParent *parent); | ||||
| void BKE_mask_calc_handle_adjacent_interp(struct MaskSpline *spline, | void BKE_mask_calc_handle_adjacent_interp(struct MaskSpline *spline, | ||||
| struct MaskSplinePoint *point, | struct MaskSplinePoint *point, | ||||
| const float u); | const float u); | ||||
| void BKE_mask_calc_tangent_polyline(struct MaskSpline *spline, | void BKE_mask_calc_tangent_polyline(struct MaskSpline *spline, | ||||
| struct MaskSplinePoint *point, | struct MaskSplinePoint *point, | ||||
| ▲ Show 20 Lines • Show All 153 Lines • Show Last 20 Lines | |||||