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>2013-05-28 17:01:31 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-28 17:01:31 +0400
commitdc39ecf0105353d309dd692f74a80b0ae3778091 (patch)
treeecbbe8cc8721c0c16d56b33f49af25190a19df6a /source/blender/blenkernel/BKE_bmesh.h
parent0559630c7e4cbc9dce4e2998c9b8e52e6b2115f0 (diff)
code cleanup: remove old/unused bmesh bevel transform mode, remove commented character list UI widget and the members these used in 'G' global.
Diffstat (limited to 'source/blender/blenkernel/BKE_bmesh.h')
-rw-r--r--source/blender/blenkernel/BKE_bmesh.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/source/blender/blenkernel/BKE_bmesh.h b/source/blender/blenkernel/BKE_bmesh.h
index 7bd131ed704..0dfab26e9f0 100644
--- a/source/blender/blenkernel/BKE_bmesh.h
+++ b/source/blender/blenkernel/BKE_bmesh.h
@@ -90,16 +90,6 @@ typedef struct BME_TransData_Head {
int len;
} BME_TransData_Head;
-/* this is no longer used */
-typedef struct BME_Glob { /* stored in Global G for Transform() purposes */
- struct BMesh *bm;
- BME_TransData_Head *td;
- struct TransInfo *Trans; /* a pointer to the global Trans struct */
- int imval[2]; /* for restoring original mouse co when initTransform() is called multiple times */
- int options;
- int res;
-} BME_Glob;
-
struct BME_TransData *BME_get_transdata(struct BME_TransData_Head *td, struct BMVert *v);
void BME_free_transdata(struct BME_TransData_Head *td);
struct BMesh *BME_bevel(struct BMesh *bm, float value, int res, int options, int defgrp_index, float angle,