2008-12-20 10:02:00 +00:00
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2008-12-20 10:02:00 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
|
|
|
|
* All rights reserved.
|
2011-10-23 17:52:20 +00:00
|
|
|
*/
|
2008-12-20 10:02:00 +00:00
|
|
|
|
2012-02-17 18:59:41 +00:00
|
|
|
#pragma once
|
2008-12-20 10:02:00 +00:00
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
* \ingroup bli
|
2011-02-18 13:58:08 +00:00
|
|
|
*/
|
|
|
|
|
2018-11-07 12:17:58 +11:00
|
|
|
#include "BLI_compiler_compat.h"
|
2020-03-19 09:33:03 +01:00
|
|
|
#include "BLI_sys_types.h" /* bool */
|
|
|
|
#include "DNA_vec_types.h"
|
2012-11-26 20:37:04 +00:00
|
|
|
|
2008-12-20 10:02:00 +00:00
|
|
|
struct rctf;
|
|
|
|
struct rcti;
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2021-12-09 20:01:44 +11:00
|
|
|
/**
|
|
|
|
* Determine if a `rect` is empty.
|
|
|
|
* An empty `rect` is one with a zero (or negative) width or height.
|
|
|
|
*
|
|
|
|
* \return True if \a rect is empty.
|
|
|
|
*/
|
2013-03-09 05:35:49 +00:00
|
|
|
bool BLI_rcti_is_empty(const struct rcti *rect);
|
|
|
|
bool BLI_rctf_is_empty(const struct rctf *rect);
|
2012-07-12 08:31:23 +00:00
|
|
|
void BLI_rctf_init(struct rctf *rect, float xmin, float xmax, float ymin, float ymax);
|
|
|
|
void BLI_rcti_init(struct rcti *rect, int xmin, int xmax, int ymin, int ymax);
|
2021-12-09 20:01:44 +11:00
|
|
|
/**
|
|
|
|
* Check if X-min and Y-min are less than or equal to X-max and Y-max, respectively.
|
|
|
|
* If this returns false, #BLI_rctf_sanitize() can be called to address this.
|
|
|
|
*
|
|
|
|
* This is not a hard constraint or invariant for rectangles, in some cases it may be useful to
|
|
|
|
* have max < min. Usually this is what you'd want though.
|
|
|
|
*/
|
2020-01-14 16:18:41 +01:00
|
|
|
bool BLI_rctf_is_valid(const struct rctf *rect);
|
|
|
|
bool BLI_rcti_is_valid(const struct rcti *rect);
|
2021-12-09 20:01:44 +11:00
|
|
|
/**
|
|
|
|
* Ensure X-min and Y-min are less than or equal to X-max and Y-max, respectively.
|
|
|
|
*/
|
2020-01-14 16:18:41 +01:00
|
|
|
void BLI_rctf_sanitize(struct rctf *rect);
|
|
|
|
void BLI_rcti_sanitize(struct rcti *rect);
|
2017-03-08 23:10:31 +11:00
|
|
|
void BLI_rctf_init_pt_radius(struct rctf *rect, const float xy[2], float size);
|
|
|
|
void BLI_rcti_init_pt_radius(struct rcti *rect, const int xy[2], int size);
|
2012-07-12 08:31:23 +00:00
|
|
|
void BLI_rcti_init_minmax(struct rcti *rect);
|
|
|
|
void BLI_rctf_init_minmax(struct rctf *rect);
|
2012-07-12 09:24:17 +00:00
|
|
|
void BLI_rcti_do_minmax_v(struct rcti *rect, const int xy[2]);
|
|
|
|
void BLI_rctf_do_minmax_v(struct rctf *rect, const float xy[2]);
|
2021-12-07 10:14:27 +01:00
|
|
|
void BLI_rcti_do_minmax_rcti(struct rcti *rect, const struct rcti *other);
|
2012-07-12 09:24:17 +00:00
|
|
|
|
2021-12-09 20:01:44 +11:00
|
|
|
/**
|
|
|
|
* Given 2 rectangles, transform a point from one to another.
|
|
|
|
*/
|
2014-03-09 15:48:09 +11:00
|
|
|
void BLI_rctf_transform_pt_v(const rctf *dst,
|
|
|
|
const rctf *src,
|
|
|
|
float xy_dst[2],
|
|
|
|
const float xy_src[2]);
|
2021-12-09 20:01:44 +11:00
|
|
|
/**
|
|
|
|
* Calculate a 4x4 matrix representing the transformation between two rectangles.
|
|
|
|
*
|
|
|
|
* \note Multiplying a vector by this matrix does *not*
|
|
|
|
* give the same value as #BLI_rctf_transform_pt_v.
|
|
|
|
*/
|
2017-08-27 16:01:06 +10:00
|
|
|
void BLI_rctf_transform_calc_m4_pivot_min_ex(
|
|
|
|
const rctf *dst, const rctf *src, float matrix[4][4], uint x, uint y);
|
|
|
|
void BLI_rctf_transform_calc_m4_pivot_min(const rctf *dst, const rctf *src, float matrix[4][4]);
|
2014-03-09 15:48:09 +11:00
|
|
|
|
2012-07-15 00:29:56 +00:00
|
|
|
void BLI_rctf_translate(struct rctf *rect, float x, float y);
|
|
|
|
void BLI_rcti_translate(struct rcti *rect, int x, int y);
|
2013-03-19 10:54:52 +00:00
|
|
|
void BLI_rcti_recenter(struct rcti *rect, int x, int y);
|
|
|
|
void BLI_rctf_recenter(struct rctf *rect, float x, float y);
|
2012-07-15 00:29:56 +00:00
|
|
|
void BLI_rcti_resize(struct rcti *rect, int x, int y);
|
2021-12-09 20:01:44 +11:00
|
|
|
/**
|
|
|
|
* Change width & height around the central X location.
|
|
|
|
*/
|
2020-10-27 13:50:51 +11:00
|
|
|
void BLI_rcti_resize_x(struct rcti *rect, int x);
|
2021-12-09 20:01:44 +11:00
|
|
|
/**
|
|
|
|
* Change width & height around the central Y location.
|
|
|
|
*/
|
2020-10-27 13:50:51 +11:00
|
|
|
void BLI_rcti_resize_y(struct rcti *rect, int y);
|
2020-07-21 10:12:35 -04:00
|
|
|
void BLI_rcti_pad(struct rcti *rect, int pad_x, int pad_y);
|
2020-11-17 23:47:44 +11:00
|
|
|
void BLI_rctf_pad(struct rctf *rect, float pad_x, float pad_y);
|
2012-07-15 00:29:56 +00:00
|
|
|
void BLI_rctf_resize(struct rctf *rect, float x, float y);
|
2020-10-27 13:50:51 +11:00
|
|
|
void BLI_rctf_resize_x(struct rctf *rect, float x);
|
|
|
|
void BLI_rctf_resize_y(struct rctf *rect, float y);
|
2022-01-07 11:38:08 +11:00
|
|
|
void BLI_rcti_scale(rcti *rect, float scale);
|
|
|
|
void BLI_rctf_scale(rctf *rect, float scale);
|
|
|
|
void BLI_rctf_pad_y(struct rctf *rect, float boundary_size, float pad_min, float pad_max);
|
2012-08-12 01:07:31 +00:00
|
|
|
void BLI_rctf_interp(struct rctf *rect,
|
|
|
|
const struct rctf *rect_a,
|
|
|
|
const struct rctf *rect_b,
|
2022-01-07 11:38:08 +11:00
|
|
|
float fac);
|
2019-05-01 11:09:22 +10:00
|
|
|
// void BLI_rcti_interp(struct rctf *rect, struct rctf *rect_a, struct rctf *rect_b, float fac);
|
2013-03-09 05:35:49 +00:00
|
|
|
bool BLI_rctf_clamp_pt_v(const struct rctf *rect, float xy[2]);
|
|
|
|
bool BLI_rcti_clamp_pt_v(const struct rcti *rect, int xy[2]);
|
2021-12-09 20:01:44 +11:00
|
|
|
/**
|
|
|
|
* Clamp \a rect within \a rect_bounds, setting \a r_xy to the offset.
|
|
|
|
*
|
|
|
|
* Keeps the top left corner within the bounds, which for user interface
|
|
|
|
* elements is typically where the most important information is.
|
|
|
|
*
|
|
|
|
* \return true if a change is made.
|
|
|
|
*/
|
2015-10-17 00:03:29 +11:00
|
|
|
bool BLI_rctf_clamp(struct rctf *rect, const struct rctf *rect_bounds, float r_xy[2]);
|
|
|
|
bool BLI_rcti_clamp(struct rcti *rect, const struct rcti *rect_bounds, int r_xy[2]);
|
2022-01-07 11:38:08 +11:00
|
|
|
bool BLI_rctf_compare(const struct rctf *rect_a, const struct rctf *rect_b, float limit);
|
2013-03-09 05:35:49 +00:00
|
|
|
bool BLI_rcti_compare(const struct rcti *rect_a, const struct rcti *rect_b);
|
|
|
|
bool BLI_rctf_isect(const struct rctf *src1, const struct rctf *src2, struct rctf *dest);
|
|
|
|
bool BLI_rcti_isect(const struct rcti *src1, const struct rcti *src2, struct rcti *dest);
|
2020-01-27 17:47:04 +11:00
|
|
|
bool BLI_rctf_isect_rect_x(const struct rctf *src1, const struct rctf *src2, float range_x[2]);
|
|
|
|
bool BLI_rctf_isect_rect_y(const struct rctf *src1, const struct rctf *src2, float range_y[2]);
|
|
|
|
bool BLI_rcti_isect_rect_x(const struct rcti *src1, const struct rcti *src2, int range_x[2]);
|
|
|
|
bool BLI_rcti_isect_rect_y(const struct rcti *src1, const struct rcti *src2, int range_y[2]);
|
2022-01-07 11:38:08 +11:00
|
|
|
bool BLI_rcti_isect_x(const rcti *rect, int x);
|
|
|
|
bool BLI_rcti_isect_y(const rcti *rect, int y);
|
|
|
|
bool BLI_rcti_isect_pt(const struct rcti *rect, int x, int y);
|
2013-03-09 05:35:49 +00:00
|
|
|
bool BLI_rcti_isect_pt_v(const struct rcti *rect, const int xy[2]);
|
2022-01-07 11:38:08 +11:00
|
|
|
bool BLI_rctf_isect_x(const rctf *rect, float x);
|
|
|
|
bool BLI_rctf_isect_y(const rctf *rect, float y);
|
|
|
|
bool BLI_rctf_isect_pt(const struct rctf *rect, float x, float y);
|
2013-03-09 05:35:49 +00:00
|
|
|
bool BLI_rctf_isect_pt_v(const struct rctf *rect, const float xy[2]);
|
2021-12-09 20:01:44 +11:00
|
|
|
/**
|
|
|
|
* \returns shortest distance from \a rect to x (0 if inside)
|
|
|
|
*/
|
2022-01-07 11:38:08 +11:00
|
|
|
int BLI_rcti_length_x(const rcti *rect, int x);
|
2021-12-09 20:01:44 +11:00
|
|
|
/**
|
|
|
|
* \returns shortest distance from \a rect to y (0 if inside)
|
|
|
|
*/
|
2022-01-07 11:38:08 +11:00
|
|
|
int BLI_rcti_length_y(const rcti *rect, int y);
|
|
|
|
float BLI_rctf_length_x(const rctf *rect, float x);
|
|
|
|
float BLI_rctf_length_y(const rctf *rect, float y);
|
2013-03-09 05:35:49 +00:00
|
|
|
bool BLI_rcti_isect_segment(const struct rcti *rect, const int s1[2], const int s2[2]);
|
|
|
|
bool BLI_rctf_isect_segment(const struct rctf *rect, const float s1[2], const float s2[2]);
|
2022-01-07 11:38:08 +11:00
|
|
|
bool BLI_rcti_isect_circle(const struct rcti *rect, const float xy[2], float radius);
|
|
|
|
bool BLI_rctf_isect_circle(const struct rctf *rect, const float xy[2], float radius);
|
2018-09-04 17:33:12 +10:00
|
|
|
bool BLI_rcti_inside_rcti(const rcti *rct_a, const rcti *rct_b);
|
2021-12-09 20:01:44 +11:00
|
|
|
/**
|
|
|
|
* is \a rct_b inside \a rct_a
|
|
|
|
*/
|
2018-09-04 17:33:12 +10:00
|
|
|
bool BLI_rctf_inside_rctf(const rctf *rct_a, const rctf *rct_b);
|
2021-11-23 10:51:09 -07:00
|
|
|
void BLI_rcti_union(struct rcti *rct_a, const struct rcti *rct_b);
|
|
|
|
void BLI_rctf_union(struct rctf *rct_a, const struct rctf *rct_b);
|
2012-08-18 20:54:43 +00:00
|
|
|
void BLI_rcti_rctf_copy(struct rcti *dst, const struct rctf *src);
|
|
|
|
void BLI_rctf_rcti_copy(struct rctf *dst, const struct rcti *src);
|
2015-08-18 14:16:58 +10:00
|
|
|
void BLI_rcti_rctf_copy_floor(struct rcti *dst, const struct rctf *src);
|
2017-06-23 11:04:58 +03:00
|
|
|
void BLI_rcti_rctf_copy_round(struct rcti *dst, const struct rctf *src);
|
2009-02-10 18:50:40 +00:00
|
|
|
|
2021-12-09 20:01:44 +11:00
|
|
|
/**
|
|
|
|
* Expand the rectangle to fit a rotated \a src.
|
|
|
|
*/
|
2022-01-07 11:38:08 +11:00
|
|
|
void BLI_rctf_rotate_expand(rctf *dst, const rctf *src, float angle);
|
2015-03-25 19:46:07 +11:00
|
|
|
|
2012-07-11 18:17:48 +00:00
|
|
|
void print_rctf(const char *str, const struct rctf *rect);
|
|
|
|
void print_rcti(const char *str, const struct rcti *rect);
|
2008-12-20 10:02:00 +00:00
|
|
|
|
2014-03-30 13:03:30 +11:00
|
|
|
#define print_rctf_id(rect) print_rctf(STRINGIFY(rect), rect)
|
|
|
|
#define print_rcti_id(rect) print_rcti(STRINGIFY(rect), rect)
|
|
|
|
|
2012-09-15 11:48:20 +00:00
|
|
|
BLI_INLINE float BLI_rcti_cent_x_fl(const struct rcti *rct)
|
|
|
|
{
|
|
|
|
return (float)(rct->xmin + rct->xmax) / 2.0f;
|
|
|
|
}
|
|
|
|
BLI_INLINE float BLI_rcti_cent_y_fl(const struct rcti *rct)
|
|
|
|
{
|
|
|
|
return (float)(rct->ymin + rct->ymax) / 2.0f;
|
|
|
|
}
|
|
|
|
BLI_INLINE int BLI_rcti_cent_x(const struct rcti *rct)
|
|
|
|
{
|
|
|
|
return (rct->xmin + rct->xmax) / 2;
|
|
|
|
}
|
|
|
|
BLI_INLINE int BLI_rcti_cent_y(const struct rcti *rct)
|
|
|
|
{
|
|
|
|
return (rct->ymin + rct->ymax) / 2;
|
|
|
|
}
|
2012-09-18 08:00:19 +00:00
|
|
|
BLI_INLINE float BLI_rctf_cent_x(const struct rctf *rct)
|
|
|
|
{
|
|
|
|
return (rct->xmin + rct->xmax) / 2.0f;
|
|
|
|
}
|
|
|
|
BLI_INLINE float BLI_rctf_cent_y(const struct rctf *rct)
|
|
|
|
{
|
|
|
|
return (rct->ymin + rct->ymax) / 2.0f;
|
|
|
|
}
|
2012-08-20 15:29:02 +00:00
|
|
|
|
2012-09-15 11:48:20 +00:00
|
|
|
BLI_INLINE int BLI_rcti_size_x(const struct rcti *rct)
|
|
|
|
{
|
|
|
|
return (rct->xmax - rct->xmin);
|
|
|
|
}
|
|
|
|
BLI_INLINE int BLI_rcti_size_y(const struct rcti *rct)
|
|
|
|
{
|
|
|
|
return (rct->ymax - rct->ymin);
|
|
|
|
}
|
|
|
|
BLI_INLINE float BLI_rctf_size_x(const struct rctf *rct)
|
|
|
|
{
|
|
|
|
return (rct->xmax - rct->xmin);
|
|
|
|
}
|
|
|
|
BLI_INLINE float BLI_rctf_size_y(const struct rctf *rct)
|
|
|
|
{
|
|
|
|
return (rct->ymax - rct->ymin);
|
|
|
|
}
|
2012-08-20 15:29:02 +00:00
|
|
|
|
2008-12-20 10:02:00 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|