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-23 07:43:02 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-23 07:43:02 +0400
commitb51590d55df4b013a0becf9977eddb33206276ba (patch)
tree03decdf489f9e7acf1ccfd2be3b9aab709b5cba3 /source/blender/editors/include/ED_mesh.h
parent4c4389f6a42ebfe0140de8d1892d9990aa592980 (diff)
code cleanup: bmesh subdivide code - BM_mesh_esubdivideflag() & "esubd" bmesh operator was passing a flag about in a fairly confusing way.
since we will eventually have python bmesh operator access better expose this as multiple booleans. remove remaining editbutflag's
Diffstat (limited to 'source/blender/editors/include/ED_mesh.h')
-rw-r--r--source/blender/editors/include/ED_mesh.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/source/blender/editors/include/ED_mesh.h b/source/blender/editors/include/ED_mesh.h
index 06e837b37bd..6a6da0cfa26 100644
--- a/source/blender/editors/include/ED_mesh.h
+++ b/source/blender/editors/include/ED_mesh.h
@@ -71,16 +71,10 @@ struct Material;
struct Object;
struct rcti;
-/* editbutflag */
-#define B_SMOOTH 8
-#define B_FRACTAL 0x2000
-#define B_SPHERE 0x4000
-
intptr_t mesh_octree_table(struct Object *ob, struct BMEditMesh *em, float *co, char mode);
int mesh_mirrtopo_table(struct Object *ob, char mode);
-/* bmeshutils.c */
-
+/* editmesh_utils.c */
/* retrieves mirrored cache vert, or NULL if there isn't one.
* note: calling this without ensuring the mirror cache state
@@ -282,11 +276,6 @@ void ED_mesh_mirrtopo_free(MirrTopoStore_t *mesh_topo_store);
#define SUBDIV_SELECT_INNER_SEL 2
#define SUBDIV_SELECT_LOOPCUT 3
-/* edge subdivide corner cut types */
-#define SUBDIV_CORNER_PATH 0
-#define SUBDIV_CORNER_INNERVERT 1
-#define SUBDIV_CORNER_FAN 2
-
#ifdef __cplusplus
}
#endif