2022-02-11 09:07:11 +11:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2014-11-01 23:31:01 +01:00
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup bmesh
|
2014-11-01 23:31:01 +01:00
|
|
|
*
|
2014-11-03 23:26:43 +01:00
|
|
|
* BM element callback functions.
|
2014-11-01 23:31:01 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
|
|
|
|
|
|
#include "bmesh.h"
|
|
|
|
|
|
|
|
|
|
#include "intern/bmesh_callback_generic.h"
|
|
|
|
|
|
|
|
|
|
bool BM_elem_cb_check_hflag_ex(BMElem *ele, void *user_data)
|
|
|
|
|
{
|
2018-09-19 12:05:58 +10:00
|
|
|
const uint hflag_pair = POINTER_AS_INT(user_data);
|
2014-11-01 23:31:01 +01:00
|
|
|
const char hflag_p = (hflag_pair & 0xff);
|
|
|
|
|
const char hflag_n = (hflag_pair >> 8);
|
|
|
|
|
|
|
|
|
|
return ((BM_elem_flag_test(ele, hflag_p) != 0) && (BM_elem_flag_test(ele, hflag_n) == 0));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool BM_elem_cb_check_hflag_enabled(BMElem *ele, void *user_data)
|
|
|
|
|
{
|
2018-09-19 12:05:58 +10:00
|
|
|
const char hflag = POINTER_AS_INT(user_data);
|
2014-11-01 23:31:01 +01:00
|
|
|
|
|
|
|
|
return (BM_elem_flag_test(ele, hflag) != 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool BM_elem_cb_check_hflag_disabled(BMElem *ele, void *user_data)
|
|
|
|
|
{
|
2018-09-19 12:05:58 +10:00
|
|
|
const char hflag = POINTER_AS_INT(user_data);
|
2014-11-01 23:31:01 +01:00
|
|
|
|
|
|
|
|
return (BM_elem_flag_test(ele, hflag) == 0);
|
|
|
|
|
}
|
2015-01-14 01:28:33 +11:00
|
|
|
|
|
|
|
|
bool BM_elem_cb_check_elem_not_equal(BMElem *ele, void *user_data)
|
|
|
|
|
{
|
|
|
|
|
return (ele != user_data);
|
|
|
|
|
}
|