Cleanup: redundant assignment in rect resize

This commit is contained in:
Campbell Barton 2017-01-02 13:55:48 +11:00
parent 911544c70c
commit 32c65faeb9
1 changed files with 4 additions and 8 deletions

View File

@ -420,20 +420,16 @@ void BLI_rctf_recenter(rctf *rect, float x, float y)
/* change width & height around the central location */
void BLI_rcti_resize(rcti *rect, int x, int y)
{
rect->xmin = rect->xmax = BLI_rcti_cent_x(rect);
rect->ymin = rect->ymax = BLI_rcti_cent_y(rect);
rect->xmin -= x / 2;
rect->ymin -= y / 2;
rect->xmin = BLI_rcti_cent_x(rect) - (x / 2);
rect->ymin = BLI_rcti_cent_y(rect) - (y / 2);
rect->xmax = rect->xmin + x;
rect->ymax = rect->ymin + y;
}
void BLI_rctf_resize(rctf *rect, float x, float y)
{
rect->xmin = rect->xmax = BLI_rctf_cent_x(rect);
rect->ymin = rect->ymax = BLI_rctf_cent_y(rect);
rect->xmin -= x * 0.5f;
rect->ymin -= y * 0.5f;
rect->xmin = BLI_rctf_cent_x(rect) - (x * 0.5f);
rect->ymin = BLI_rctf_cent_y(rect) - (y * 0.5f);
rect->xmax = rect->xmin + x;
rect->ymax = rect->ymin + y;
}