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-09-12 09:11:38 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-09-12 09:11:38 +0400
commit77e351300bffc52eb8ac3cc35a0bedb49efab9a4 (patch)
tree2e8fe737906df9560e45c8052ea6d99c1d4ebf5d /source/blender/bmesh/intern/bmesh_private.h
parentbd5fdf63cbe49d8adebb33bf007789d9335c22ab (diff)
code cleanup: replace BM_DISK_EDGE_LINK_GET define with inline function, that checks for the vertex not matching either of the edges verts.
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_private.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_private.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/blender/bmesh/intern/bmesh_private.h b/source/blender/bmesh/intern/bmesh_private.h
index 73370de8cee..b3fe3676ab8 100644
--- a/source/blender/bmesh/intern/bmesh_private.h
+++ b/source/blender/bmesh/intern/bmesh_private.h
@@ -53,12 +53,6 @@ int bmesh_elem_check(void *element, const char htype);
} (void)0
#endif
-#define BM_DISK_EDGE_LINK_GET(e, v) ( \
- ((v) == ((BMEdge *)(e))->v1) ? \
- &((e)->v1_disk_link) : \
- &((e)->v2_disk_link) \
- )
-
int bmesh_radial_length(BMLoop *l);
int bmesh_disk_count(BMVert *v);