Docs: document bmesh.utils.vert_collapse_faces join_faces argument

This commit is contained in:
Campbell Barton 2020-11-19 22:18:47 +11:00
parent fd88246d61
commit b5e85321dc
1 changed files with 3 additions and 0 deletions

View File

@ -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)