[Bf-blender-cvs] [b5e85321dc6] master: Docs: document bmesh.utils.vert_collapse_faces join_faces argument

Campbell Barton noreply at git.blender.org
Thu Nov 19 12:20:01 CET 2020


Commit: b5e85321dc6b50ccc8e343ede5749591c5e6af4d
Author: Campbell Barton
Date:   Thu Nov 19 22:18:47 2020 +1100
Branches: master
https://developer.blender.org/rBb5e85321dc6b50ccc8e343ede5749591c5e6af4d

Docs: document bmesh.utils.vert_collapse_faces join_faces argument

===================================================================

M	source/blender/python/bmesh/bmesh_py_utils.c

===================================================================

diff --git a/source/blender/python/bmesh/bmesh_py_utils.c b/source/blender/python/bmesh/bmesh_py_utils.c
index eab9ab226e4..22c141e0958 100644
--- a/source/blender/python/bmesh/bmesh_py_utils.c
+++ b/source/blender/python/bmesh/bmesh_py_utils.c
@@ -109,6 +109,9 @@ PyDoc_STRVAR(bpy_bm_utils_vert_collapse_faces_doc,
              "   :type edge: :class:`bmesh.types.BMEdge`\n"
              "   :arg fac: The factor to use when merging customdata [0 - 1].\n"
              "   :type fac: float\n"
+             "   :arg join_faces: When true the faces around the vertex will be joined otherwise "
+             "collapse the vertex by merging the 2 edges this vertex connects to into one.\n"
+             "   :type join_faces: bool\n"
              "   :return: The resulting edge from the collapse operation.\n"
              "   :rtype: :class:`bmesh.types.BMEdge`\n");
 static PyObject *bpy_bm_utils_vert_collapse_faces(PyObject *UNUSED(self), PyObject *args)



More information about the Bf-blender-cvs mailing list