2013-09-10 07:52:10 +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,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2018-02-18 21:27:33 +11:00
|
|
|
#pragma once
|
2013-09-10 07:52:10 +00:00
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
* \ingroup bli
|
2013-09-10 07:52:10 +00:00
|
|
|
*/
|
|
|
|
|
2020-03-02 15:04:53 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2021-12-09 20:01:44 +11:00
|
|
|
/**
|
|
|
|
* A.M. Andrew's monotone chain 2D convex hull algorithm.
|
|
|
|
*
|
|
|
|
* \param points: An array of 2D points presorted by increasing x and y-coords.
|
|
|
|
* \param n: The number of points in points.
|
|
|
|
* \param r_points: An array of the convex hull vertex indices (max is n).
|
|
|
|
* \returns the number of points in r_points.
|
|
|
|
*/
|
2022-01-07 11:38:08 +11:00
|
|
|
int BLI_convexhull_2d_sorted(const float (*points)[2], int n, int r_points[]);
|
2021-12-09 20:01:44 +11:00
|
|
|
/**
|
|
|
|
* A.M. Andrew's monotone chain 2D convex hull algorithm.
|
|
|
|
*
|
|
|
|
* \param points: An array of 2D points.
|
|
|
|
* \param n: The number of points in points.
|
|
|
|
* \param r_points: An array of the convex hull vertex indices (max is n).
|
|
|
|
* _must_ be allocated as `n * 2` because of how its used internally,
|
|
|
|
* even though the final result will be no more than \a n in size.
|
|
|
|
* \returns the number of points in r_points.
|
|
|
|
*/
|
2022-01-07 11:38:08 +11:00
|
|
|
int BLI_convexhull_2d(const float (*points)[2], int n, int r_points[]);
|
2013-09-10 07:52:10 +00:00
|
|
|
|
2021-12-09 20:01:44 +11:00
|
|
|
/**
|
|
|
|
* \return The best angle for fitting the convex hull to an axis aligned bounding box.
|
|
|
|
*
|
|
|
|
* Intended to be used with #BLI_convexhull_2d
|
|
|
|
*
|
|
|
|
* \param points_hull: Ordered hull points
|
|
|
|
* (result of #BLI_convexhull_2d mapped to a contiguous array).
|
|
|
|
*
|
|
|
|
* \note we could return the index of the best edge too if its needed.
|
|
|
|
*/
|
2013-09-11 06:56:51 +00:00
|
|
|
float BLI_convexhull_aabb_fit_hull_2d(const float (*points_hull)[2], unsigned int n);
|
2021-12-09 20:01:44 +11:00
|
|
|
/**
|
|
|
|
* Wrap #BLI_convexhull_aabb_fit_hull_2d and do the convex hull calculation.
|
|
|
|
*
|
|
|
|
* \param points: arbitrary 2d points.
|
|
|
|
*/
|
2013-09-11 06:56:51 +00:00
|
|
|
float BLI_convexhull_aabb_fit_points_2d(const float (*points)[2], unsigned int n);
|
2013-09-10 23:11:58 +00:00
|
|
|
|
2020-03-02 15:04:53 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|