2011-10-25 16:17:26 +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.
|
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
* \ingroup bke
|
2011-10-25 16:17:26 +00:00
|
|
|
*/
|
|
|
|
|
2013-04-16 05:23:34 +00:00
|
|
|
#ifndef __BKE_EDITMESH_BVH_H__
|
|
|
|
#define __BKE_EDITMESH_BVH_H__
|
2010-12-23 02:14:03 +00:00
|
|
|
|
2019-01-28 21:08:24 +11:00
|
|
|
struct BMBVHTree;
|
2009-10-07 21:19:58 +00:00
|
|
|
struct BMEditMesh;
|
|
|
|
struct BMFace;
|
2013-11-18 18:20:21 +11:00
|
|
|
struct BMLoop;
|
2019-01-28 21:08:24 +11:00
|
|
|
struct BMVert;
|
|
|
|
struct BMesh;
|
2010-09-25 01:54:58 +00:00
|
|
|
struct BVHTree;
|
2009-11-04 02:12:00 +00:00
|
|
|
|
2009-10-07 21:19:58 +00:00
|
|
|
typedef struct BMBVHTree BMBVHTree;
|
|
|
|
|
2015-01-13 23:54:14 +11:00
|
|
|
typedef bool (*BMBVHTree_FaceFilter)(struct BMFace *f, void *userdata);
|
|
|
|
|
2014-07-30 16:48:20 +10:00
|
|
|
BMBVHTree *BKE_bmbvh_new_from_editmesh(
|
|
|
|
struct BMEditMesh *em, int flag,
|
|
|
|
const float (*cos_cage)[3], const bool cos_cage_free);
|
|
|
|
BMBVHTree *BKE_bmbvh_new_ex(
|
|
|
|
struct BMesh *bm, struct BMLoop *(*looptris)[3], int looptris_tot, int flag,
|
|
|
|
const float (*cos_cage)[3], const bool cos_cage_free,
|
|
|
|
bool (*test_fn)(struct BMFace *, void *user_data), void *user_data);
|
|
|
|
BMBVHTree *BKE_bmbvh_new(
|
|
|
|
struct BMesh *bm, struct BMLoop *(*looptris)[3], int looptris_tot, int flag,
|
|
|
|
const float (*cos_cage)[3], const bool cos_cage_free);
|
2013-04-16 05:59:48 +00:00
|
|
|
void BKE_bmbvh_free(BMBVHTree *tree);
|
|
|
|
struct BVHTree *BKE_bmbvh_tree_get(BMBVHTree *tree);
|
2015-01-13 23:54:14 +11:00
|
|
|
|
|
|
|
struct BMFace *BKE_bmbvh_ray_cast(
|
|
|
|
BMBVHTree *tree, const float co[3], const float dir[3], const float radius,
|
|
|
|
float *r_dist, float r_hitout[3], float r_cagehit[3]);
|
|
|
|
|
|
|
|
struct BMFace *BKE_bmbvh_ray_cast_filter(
|
|
|
|
BMBVHTree *tree, const float co[3], const float dir[3], const float radius,
|
|
|
|
float *r_dist, float r_hitout[3], float r_cagehit[3],
|
|
|
|
BMBVHTree_FaceFilter filter, void *filter_cb);
|
|
|
|
|
2014-02-03 02:46:45 +11:00
|
|
|
/* find a vert closest to co in a sphere of radius dist_max */
|
|
|
|
struct BMVert *BKE_bmbvh_find_vert_closest(BMBVHTree *tree, const float co[3], const float dist_max);
|
2015-12-14 00:10:40 +11:00
|
|
|
struct BMFace *BKE_bmbvh_find_face_closest(BMBVHTree *tree, const float co[3], const float dist_max);
|
2009-10-07 21:19:58 +00:00
|
|
|
|
2015-08-20 19:09:20 +10:00
|
|
|
struct BVHTreeOverlap *BKE_bmbvh_overlap(const BMBVHTree *bmtree_a, const BMBVHTree *bmtree_b, unsigned int *r_overlap_tot);
|
|
|
|
|
2013-04-16 05:59:48 +00:00
|
|
|
/* BKE_bmbvh_new flag parameter */
|
2012-04-18 16:27:11 +00:00
|
|
|
enum {
|
2013-04-18 01:20:04 +00:00
|
|
|
BMBVH_RETURN_ORIG = (1 << 0), /* use with 'cos_cage', returns hits in relation to original geometry */
|
|
|
|
BMBVH_RESPECT_SELECT = (1 << 1), /* restrict to hidden geometry (overrides BMBVH_RESPECT_HIDDEN) */
|
|
|
|
BMBVH_RESPECT_HIDDEN = (1 << 2) /* omit hidden geometry */
|
2012-04-18 16:27:11 +00:00
|
|
|
};
|
2011-08-30 01:59:33 +00:00
|
|
|
|
2013-04-16 05:23:34 +00:00
|
|
|
#endif /* __BKE_EDITMESH_BVH_H__ */
|