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>2014-01-17 02:21:30 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-17 02:21:30 +0400
commite7a6efa2a78f216db928617c73a12b784aaf21e8 (patch)
tree27cc1376d3f05ddaa2df782a71a8b167569fed5d /source/blender/bmesh/intern/bmesh_delete.h
parentd9bbcb371a73b87532877791a948ceddde288b07 (diff)
Code Cleanup: move delete funcs out of bmesh_construct.c into own file
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_delete.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_delete.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/source/blender/bmesh/intern/bmesh_delete.h b/source/blender/bmesh/intern/bmesh_delete.h
new file mode 100644
index 00000000000..5e9134d0f5e
--- /dev/null
+++ b/source/blender/bmesh/intern/bmesh_delete.h
@@ -0,0 +1,36 @@
+/*
+ * ***** BEGIN GPL LICENSE BLOCK *****
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * Contributor(s): Geoffrey Bantle.
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
+#ifndef __BMESH_DELETE_H__
+#define __BMESH_DELETE_H__
+
+/** \file blender/bmesh/intern/bmesh_delete.h
+ * \ingroup bmesh
+ */
+
+void BMO_remove_tagged_faces(BMesh *bm, const short oflag);
+void BMO_remove_tagged_edges(BMesh *bm, const short oflag);
+void BMO_remove_tagged_verts(BMesh *bm, const short oflag);
+
+void BMO_remove_tagged_context(BMesh *bm, const short oflag, const int type);
+
+#endif /* __BMESH_DELETE_H__ */