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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-02-28 20:29:48 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-28 20:29:48 +0400
commitc48a5fd821d0270cdd974315f8d49987b53a1795 (patch)
tree9fd2b05e776054b9cddd229dee0aa83105b3f47e /source/blender/bmesh/intern/bmesh_private.h
parented04c213745362fcab99cdda89343aca7cbb65e5 (diff)
code cleanup,
- bmesh_newcore.c -> bmesh_core.c. - add bmesh_interp header.
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_private.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_private.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/source/blender/bmesh/intern/bmesh_private.h b/source/blender/bmesh/intern/bmesh_private.h
index 7147f20013b..5b42788fe88 100644
--- a/source/blender/bmesh/intern/bmesh_private.h
+++ b/source/blender/bmesh/intern/bmesh_private.h
@@ -40,14 +40,14 @@
int bmesh_elem_check(BMesh *bm, void *element, const char htype);
#define BM_CHECK_ELEMENT(bm, el) \
- if (bmesh_elem_check(bm, el, ((BMHeader *)el)->htype)) { \
+ if (bmesh_elem_check(bm, el, ((BMHeader *)el)->htype)) { \
printf("check_element failure, with code %i on line %i in file\n" \
" \"%s\"\n\n", \
- bmesh_elem_check(bm, el, ((BMHeader *)el)->htype), \
+ bmesh_elem_check(bm, el, ((BMHeader *)el)->htype), \
__LINE__, __FILE__); \
}
-#define BM_EDGE_DISK_LINK_GET(e, v) ( \
+#define BM_DISK_EDGE_LINK_GET(e, v) ( \
((v) == ((BMEdge *)(e))->v1) ? \
&((e)->v1_disk_link) : \
&((e)->v2_disk_link) \
@@ -56,13 +56,6 @@ int bmesh_elem_check(BMesh *bm, void *element, const char htype);
int bmesh_radial_length(BMLoop *l);
int bmesh_disk_count(BMVert *v);
-/* internal selection flushing */
-void bmesh_selectmode_flush(BMesh *bm);
-
-/*internal filter API*/
-void *bmesh_get_filter_callback(int type);
-int bmesh_get_filter_argtype(int type);
-
/* NOTE: ensure different parts of the API do not conflict
* on using these internal flags!*/
#define _FLAG_JF 1 /* join faces */