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-03-24 04:20:36 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-24 04:20:36 +0400
commit0c898514f0b1536e1b335f24a1408f70c0162c48 (patch)
treeacc4a64b5a20f8a684d3f6175555db35fb4fdbec /source/blender/editors
parent888cc0d7acc4d831bfcf160c1d85cf15d6ab885a (diff)
code cleanup: bmesh_ source files in our editor dir, they are the same as other editmesh_ files.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/mesh/CMakeLists.txt10
-rw-r--r--source/blender/editors/mesh/editmesh_bvh.c5
-rw-r--r--source/blender/editors/mesh/editmesh_knife.c (renamed from source/blender/editors/mesh/knifetool.c)7
-rw-r--r--source/blender/editors/mesh/editmesh_loopcut.c (renamed from source/blender/editors/mesh/loopcut.c)3
-rw-r--r--source/blender/editors/mesh/editmesh_select.c (renamed from source/blender/editors/mesh/bmesh_select.c)4
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c (renamed from source/blender/editors/mesh/bmesh_tools.c)4
-rw-r--r--source/blender/editors/mesh/editmesh_utils.c (renamed from source/blender/editors/mesh/bmesh_utils.c)4
7 files changed, 29 insertions, 8 deletions
diff --git a/source/blender/editors/mesh/CMakeLists.txt b/source/blender/editors/mesh/CMakeLists.txt
index 691889bb1a8..de9443d1eb4 100644
--- a/source/blender/editors/mesh/CMakeLists.txt
+++ b/source/blender/editors/mesh/CMakeLists.txt
@@ -38,14 +38,14 @@ set(INC_SYS
)
set(SRC
- bmesh_select.c
- bmesh_tools.c
- bmesh_utils.c
editface.c
editmesh_add.c
editmesh_bvh.c
- knifetool.c
- loopcut.c
+ editmesh_knife.c
+ editmesh_loopcut.c
+ editmesh_select.c
+ editmesh_tools.c
+ editmesh_utils.c
mesh_data.c
mesh_ops.c
meshtools.c
diff --git a/source/blender/editors/mesh/editmesh_bvh.c b/source/blender/editors/mesh/editmesh_bvh.c
index 44d4d554ac8..0302e1df2c3 100644
--- a/source/blender/editors/mesh/editmesh_bvh.c
+++ b/source/blender/editors/mesh/editmesh_bvh.c
@@ -24,6 +24,11 @@
*
* ***** END GPL LICENSE BLOCK *****
*/
+
+/** \file blender/editors/mesh/editmesh_bvh.c
+ * \ingroup edmesh
+ */
+
#define IN_EDITMESHBVH
diff --git a/source/blender/editors/mesh/knifetool.c b/source/blender/editors/mesh/editmesh_knife.c
index fbe0d627ade..02f33b586fb 100644
--- a/source/blender/editors/mesh/knifetool.c
+++ b/source/blender/editors/mesh/editmesh_knife.c
@@ -19,11 +19,16 @@
* All rights reserved.
*
*
- * Contributor(s): Joseph Eagar, Joshua Leung, Howard Trickey
+ * Contributor(s): Joseph Eagar, Joshua Leung, Howard Trickey,
+ * Campbell Barton
*
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/editors/mesh/editmesh_knife.c
+ * \ingroup edmesh
+ */
+
#define _USE_MATH_DEFINES
#include "MEM_guardedalloc.h"
diff --git a/source/blender/editors/mesh/loopcut.c b/source/blender/editors/mesh/editmesh_loopcut.c
index e9b0e276bd0..1696d4d80b3 100644
--- a/source/blender/editors/mesh/loopcut.c
+++ b/source/blender/editors/mesh/editmesh_loopcut.c
@@ -24,11 +24,10 @@
* ***** END GPL LICENSE BLOCK *****
*/
-/** \file blender/editors/mesh/loopcut.c
+/** \file blender/editors/mesh/editmesh_loopcut.c
* \ingroup edmesh
*/
-
#include <float.h>
#define _USE_MATH_DEFINES
#include <math.h>
diff --git a/source/blender/editors/mesh/bmesh_select.c b/source/blender/editors/mesh/editmesh_select.c
index 67b3e8a99c0..5d4647b7f87 100644
--- a/source/blender/editors/mesh/bmesh_select.c
+++ b/source/blender/editors/mesh/editmesh_select.c
@@ -25,6 +25,10 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/editors/mesh/editmesh_select.c
+ * \ingroup edmesh
+ */
+
#include "MEM_guardedalloc.h"
#include "BLI_blenlib.h"
diff --git a/source/blender/editors/mesh/bmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 96ac10ecf4a..651ad679f09 100644
--- a/source/blender/editors/mesh/bmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -25,6 +25,10 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/editors/mesh/editmesh_tools.c
+ * \ingroup edmesh
+ */
+
#include "MEM_guardedalloc.h"
#include "DNA_material_types.h"
diff --git a/source/blender/editors/mesh/bmesh_utils.c b/source/blender/editors/mesh/editmesh_utils.c
index 560025b12a6..bf37dbbea2e 100644
--- a/source/blender/editors/mesh/bmesh_utils.c
+++ b/source/blender/editors/mesh/editmesh_utils.c
@@ -25,6 +25,10 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/editors/mesh/editmesh_utils.c
+ * \ingroup edmesh
+ */
+
#include "MEM_guardedalloc.h"
#include "DNA_mesh_types.h"