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-04-17 09:09:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-17 09:09:37 +0400
commit348622360752916f9b776597e846cd2af260cdb9 (patch)
tree11e989631d832d6674fbd5c7cb188469b4cded90 /source/blender/editors/mesh/editmesh_bvh.c
parent195d6c1b1a363bb30b6efaf9c274cc45edaa6f9a (diff)
code cleanup: remove/comment some unused code.
Diffstat (limited to 'source/blender/editors/mesh/editmesh_bvh.c')
-rw-r--r--source/blender/editors/mesh/editmesh_bvh.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/source/blender/editors/mesh/editmesh_bvh.c b/source/blender/editors/mesh/editmesh_bvh.c
index f9c673010f3..c1b694d5e2d 100644
--- a/source/blender/editors/mesh/editmesh_bvh.c
+++ b/source/blender/editors/mesh/editmesh_bvh.c
@@ -305,19 +305,6 @@ BMVert *BMBVH_FindClosestVert(BMBVHTree *tree, float *co, float maxdist)
return NULL;
}
-typedef struct walklist {
- BMVert *v;
- int valence;
- int depth;
- float w, r;
- int totwalked;
-
- /* state data */
- BMVert *lastv;
- BMLoop *curl, *firstl;
- BMEdge *cure;
-} walklist;
-
/* UNUSED */
#if 0
static short winding(float *v1, float *v2, float *v3)