code cleanup: rename bmesh operator files to be more consistent
This commit is contained in:
@@ -26,8 +26,8 @@
|
|||||||
Example Win32 usage:
|
Example Win32 usage:
|
||||||
c:\Python32\python.exe c:\blender_dev\blender\build_files\cmake\cmake_qtcreator_project.py c:\blender_dev\cmake_build
|
c:\Python32\python.exe c:\blender_dev\blender\build_files\cmake\cmake_qtcreator_project.py c:\blender_dev\cmake_build
|
||||||
|
|
||||||
example linux usage
|
Example Linux usage:
|
||||||
python .~/blenderSVN/blender/build_files/cmake/cmake_qtcreator_project.py ~/blenderSVN/cmake
|
python ~/blenderSVN/blender/build_files/cmake/cmake_qtcreator_project.py ~/blenderSVN/cmake
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
|
@@ -46,11 +46,10 @@ set(SRC
|
|||||||
operators/bmo_create.c
|
operators/bmo_create.c
|
||||||
operators/bmo_dissolve.c
|
operators/bmo_dissolve.c
|
||||||
operators/bmo_dupe.c
|
operators/bmo_dupe.c
|
||||||
operators/bmo_edgeloop_fill.c
|
|
||||||
operators/bmo_edgenet.c
|
operators/bmo_edgenet.c
|
||||||
operators/bmo_edgesplit.c
|
|
||||||
operators/bmo_extrude.c
|
operators/bmo_extrude.c
|
||||||
operators/bmo_grid_fill.c
|
operators/bmo_fill_edgeloop.c
|
||||||
|
operators/bmo_fill_grid.c
|
||||||
operators/bmo_hull.c
|
operators/bmo_hull.c
|
||||||
operators/bmo_inset.c
|
operators/bmo_inset.c
|
||||||
operators/bmo_join_triangles.c
|
operators/bmo_join_triangles.c
|
||||||
@@ -61,8 +60,9 @@ set(SRC
|
|||||||
operators/bmo_removedoubles.c
|
operators/bmo_removedoubles.c
|
||||||
operators/bmo_similar.c
|
operators/bmo_similar.c
|
||||||
operators/bmo_smooth_laplacian.c
|
operators/bmo_smooth_laplacian.c
|
||||||
operators/bmo_symmetrize.c
|
operators/bmo_split_edges.c
|
||||||
operators/bmo_subdivide.c
|
operators/bmo_subdivide.c
|
||||||
|
operators/bmo_symmetrize.c
|
||||||
operators/bmo_triangulate.c
|
operators/bmo_triangulate.c
|
||||||
operators/bmo_unsubdivide.c
|
operators/bmo_unsubdivide.c
|
||||||
operators/bmo_utils.c
|
operators/bmo_utils.c
|
||||||
|
@@ -20,7 +20,7 @@
|
|||||||
* ***** END GPL LICENSE BLOCK *****
|
* ***** END GPL LICENSE BLOCK *****
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** \file blender/bmesh/operators/bmo_edgeloop_fill.c
|
/** \file blender/bmesh/operators/bmo_fill_edgeloop.c
|
||||||
* \ingroup bmesh
|
* \ingroup bmesh
|
||||||
*
|
*
|
||||||
* Fill discreet edge loop(s) with faces.
|
* Fill discreet edge loop(s) with faces.
|
@@ -20,7 +20,7 @@
|
|||||||
* ***** END GPL LICENSE BLOCK *****
|
* ***** END GPL LICENSE BLOCK *****
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** \file blender/bmesh/operators/bmo_grid_fill.c
|
/** \file blender/bmesh/operators/bmo_fill_grid.c
|
||||||
* \ingroup bmesh
|
* \ingroup bmesh
|
||||||
*
|
*
|
||||||
* Fill 2 isolated, open edge loops with a grid of quads.
|
* Fill 2 isolated, open edge loops with a grid of quads.
|
@@ -20,7 +20,7 @@
|
|||||||
* ***** END GPL LICENSE BLOCK *****
|
* ***** END GPL LICENSE BLOCK *****
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** \file blender/bmesh/operators/bmo_edgesplit.c
|
/** \file blender/bmesh/operators/bmo_split_edges.c
|
||||||
* \ingroup bmesh
|
* \ingroup bmesh
|
||||||
*
|
*
|
||||||
* Just a wrapper around #BM_mesh_edgesplit
|
* Just a wrapper around #BM_mesh_edgesplit
|
Reference in New Issue
Block a user