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-02-23 18:15:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-23 18:15:26 +0400
commit2fd226abe77514594a36eb8781c78b8a09fedaec (patch)
treee553845390623c9c5bb1e7cbf9d7c7ca6fb68ec9 /source/blender/python/bmesh/bmesh_py_utils.c
parentbc5c5bbddc66244ae7f1847f398295ec198fdc80 (diff)
bmesh py api, added: bmesh.utils.edge_rotate(edge, ccw=False)
also improved docstrings.
Diffstat (limited to 'source/blender/python/bmesh/bmesh_py_utils.c')
-rw-r--r--source/blender/python/bmesh/bmesh_py_utils.c48
1 files changed, 48 insertions, 0 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_utils.c b/source/blender/python/bmesh/bmesh_py_utils.c
index 389b40c0d70..21a033f135f 100644
--- a/source/blender/python/bmesh/bmesh_py_utils.c
+++ b/source/blender/python/bmesh/bmesh_py_utils.c
@@ -40,6 +40,7 @@
#include "bmesh_py_utils.h" /* own include */
+
PyDoc_STRVAR(bpy_bm_utils_vert_collapse_edge_doc,
".. method:: vert_collapse_edge(vert, edge)\n"
"\n"
@@ -165,6 +166,7 @@ static PyObject *bpy_bm_utils_vert_collapse_faces(PyObject *UNUSED(self), PyObje
}
}
+
PyDoc_STRVAR(bpy_bm_utils_vert_dissolve_doc,
".. method:: vert_dissolve(vert)\n"
"\n"
@@ -256,6 +258,50 @@ static PyObject *bpy_bm_utils_edge_split(PyObject *UNUSED(self), PyObject *args)
}
}
+
+PyDoc_STRVAR(bpy_bm_utils_edge_rotate_doc,
+".. method:: edge_rotate(edge, ccw=False)\n"
+"\n"
+" Rotate the edge and return the newly created edge.\n"
+" If rotating the edge fails, None will be returned.\n"
+"\n"
+" :arg edge: The edge to rotate.\n"
+" :type edge: :class:`bmesh.tupes.BMEdge`\n"
+" :arg ccw: When True the edge will be rotated counter clockwise.\n"
+" :type ccw: bool\n"
+" :return: The newly rotated edge.\n"
+" :rtype: :class:`bmesh.tupes.BMEdge`\n"
+);
+static PyObject *bpy_bm_utils_edge_rotate(PyObject *UNUSED(self), PyObject *args)
+{
+ BPy_BMEdge *py_edge;
+ int do_ccw = FALSE;
+
+ BMesh *bm;
+ BMEdge *e_new = NULL;
+
+ if (!PyArg_ParseTuple(args, "O!|i:edge_rotate",
+ &BPy_BMEdge_Type, &py_edge,
+ &do_ccw))
+ {
+ return NULL;
+ }
+
+ BPY_BM_CHECK_OBJ(py_edge);
+
+ bm = py_edge->bm;
+
+ e_new = BM_edge_rotate(bm, py_edge->e, do_ccw);
+
+ if (e_new) {
+ return BPy_BMEdge_CreatePyObject(bm, e_new);
+ }
+ else {
+ Py_RETURN_NONE;
+ }
+}
+
+
PyDoc_STRVAR(bpy_bm_utils_face_split_doc,
".. method:: face_split(face, vert, vert_a, vert_b, edge_example)\n"
"\n"
@@ -338,10 +384,12 @@ static struct PyMethodDef BPy_BM_utils_methods[] = {
{"vert_collapse_faces", (PyCFunction)bpy_bm_utils_vert_collapse_faces, METH_VARARGS, bpy_bm_utils_vert_collapse_faces_doc},
{"vert_dissolve", (PyCFunction)bpy_bm_utils_vert_dissolve, METH_VARARGS, bpy_bm_utils_vert_dissolve_doc},
{"edge_split", (PyCFunction)bpy_bm_utils_edge_split, METH_VARARGS, bpy_bm_utils_edge_split_doc},
+ {"edge_rotate", (PyCFunction)bpy_bm_utils_edge_rotate, METH_VARARGS, bpy_bm_utils_edge_rotate_doc},
{"face_split", (PyCFunction)bpy_bm_utils_face_split, METH_VARARGS, bpy_bm_utils_face_split_doc},
{NULL, NULL, 0, NULL}
};
+
PyDoc_STRVAR(BPy_BM_doc,
"This module provides access to blenders bmesh data structures."
);