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>2020-11-19 14:18:47 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-11-19 14:18:47 +0300
commitb5e85321dc6b50ccc8e343ede5749591c5e6af4d (patch)
treebb8dc0f05bbcefa5064fed53cb3227bdde7cb7b3 /source/blender/python/bmesh
parentfd88246d61d64cd39d06ff3484e7d68428886c1a (diff)
Docs: document bmesh.utils.vert_collapse_faces join_faces argument
Diffstat (limited to 'source/blender/python/bmesh')
-rw-r--r--source/blender/python/bmesh/bmesh_py_utils.c3
1 files changed, 3 insertions, 0 deletions
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)