Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bmesh_inline.c « intern « bmesh « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4433aaa0fc6929e76884f4d79ee50d9f8b4e6f67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
 * ***** BEGIN GPL LICENSE BLOCK *****
 *
 * 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.
 *
 * Contributor(s): Joseph Eagar, Geoffrey Bantle, Campbell Barton
 *
 * ***** END GPL LICENSE BLOCK *****
 */

/** \file blender/bmesh/intern/bmesh_inline.c
 *  \ingroup bmesh
 *
 * BM Inline functions.
 */

#ifndef __BMESH_INLINE_C__
#define __BMESH_INLINE_C__

#include "bmesh.h"

BM_INLINE char BM_elem_flag_test(const void *element, const char hflag)
{
	return ((const BMHeader *)element)->hflag & hflag;
}

BM_INLINE void BM_elem_flag_enable(void *element, const char hflag)
{
	((BMHeader *)element)->hflag |= hflag;
}

BM_INLINE void BM_elem_flag_disable(void *element, const char hflag)
{
	((BMHeader *)element)->hflag &= ~hflag;
}

BM_INLINE void BM_elem_flag_toggle(void *element, const char hflag)
{
	((BMHeader *)element)->hflag ^= hflag;
}

BM_INLINE void BM_elem_flag_merge(void *element_a, void *element_b)
{
	((BMHeader *)element_a)->hflag =
	((BMHeader *)element_b)->hflag = (((BMHeader *)element_a)->hflag |
	                                  ((BMHeader *)element_b)->hflag);
}

BM_INLINE void BM_elem_index_set(void *element, const int index)
{
	((BMHeader *)element)->index = index;
}

BM_INLINE int BM_elem_index_get(const void *element)
{
	return ((BMHeader *)element)->index;
}

#endif /* __BMESH_INLINE_C__ */