Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenlib/BLI_rect.h
| Show First 20 Lines • Show All 59 Lines • ▼ Show 20 Lines | |||||
| void BLI_rctf_translate(struct rctf *rect, float x, float y); | void BLI_rctf_translate(struct rctf *rect, float x, float y); | ||||
| void BLI_rcti_translate(struct rcti *rect, int x, int y); | void BLI_rcti_translate(struct rcti *rect, int x, int y); | ||||
| void BLI_rcti_recenter(struct rcti *rect, int x, int y); | void BLI_rcti_recenter(struct rcti *rect, int x, int y); | ||||
| void BLI_rctf_recenter(struct rctf *rect, float x, float y); | void BLI_rctf_recenter(struct rctf *rect, float x, float y); | ||||
| void BLI_rcti_resize(struct rcti *rect, int x, int y); | void BLI_rcti_resize(struct rcti *rect, int x, int y); | ||||
| void BLI_rcti_resize_x(struct rcti *rect, int x); | void BLI_rcti_resize_x(struct rcti *rect, int x); | ||||
| void BLI_rcti_resize_y(struct rcti *rect, int y); | void BLI_rcti_resize_y(struct rcti *rect, int y); | ||||
| void BLI_rcti_pad(struct rcti *rect, int pad_x, int pad_y); | void BLI_rcti_pad(struct rcti *rect, int pad_x, int pad_y); | ||||
| void BLI_rctf_pad(struct rctf *rect, float pad_x, float pad_y); | |||||
| void BLI_rctf_resize(struct rctf *rect, float x, float y); | void BLI_rctf_resize(struct rctf *rect, float x, float y); | ||||
| void BLI_rctf_resize_x(struct rctf *rect, float x); | void BLI_rctf_resize_x(struct rctf *rect, float x); | ||||
| void BLI_rctf_resize_y(struct rctf *rect, float y); | void BLI_rctf_resize_y(struct rctf *rect, float y); | ||||
| void BLI_rcti_scale(rcti *rect, const float scale); | void BLI_rcti_scale(rcti *rect, const float scale); | ||||
| void BLI_rctf_scale(rctf *rect, const float scale); | void BLI_rctf_scale(rctf *rect, const float scale); | ||||
| void BLI_rctf_pad_y(struct rctf *rect, | void BLI_rctf_pad_y(struct rctf *rect, | ||||
| const float boundary_size, | const float boundary_size, | ||||
| const float pad_min, | const float pad_min, | ||||
| ▲ Show 20 Lines • Show All 96 Lines • Show Last 20 Lines | |||||