Docs: add note for bmesh face_split_edgenet

This commit is contained in:
Campbell Barton 2017-10-12 22:46:04 +11:00
parent 5ea729845d
commit b29e37ed81
Notes: blender-bot 2023-02-14 06:17:14 +01:00
Referenced by issue #53683, 2.79a release
1 changed files with 4 additions and 0 deletions

View File

@ -565,6 +565,10 @@ PyDoc_STRVAR(bpy_bm_utils_face_split_edgenet_doc,
" :type edgenet: :class:`bmesh.types.BMEdge`\n"
" :return: The newly created faces.\n"
" :rtype: tuple of (:class:`bmesh.types.BMFace`)\n"
"\n"
" .. note::\n"
"\n"
" Regions defined by edges need to connect to the face, otherwise they're ignored as loose edges.\n"
);
static PyObject *bpy_bm_utils_face_split_edgenet(PyObject *UNUSED(self), PyObject *args, PyObject *kw)
{