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>2017-10-12 14:46:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-10-12 15:36:42 +0300
commitb29e37ed81fdc4e6213602ca5a9d5095100ee513 (patch)
tree2376d075a2cdb1d23073d62a5788b4953449a134 /source/blender/python
parent5ea729845d8b11ecd0d1f200fc7b23e6461b97bb (diff)
Docs: add note for bmesh face_split_edgenet
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/bmesh/bmesh_py_utils.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_utils.c b/source/blender/python/bmesh/bmesh_py_utils.c
index 89c196dbcad..fc0cd9e475b 100644
--- a/source/blender/python/bmesh/bmesh_py_utils.c
+++ b/source/blender/python/bmesh/bmesh_py_utils.c
@@ -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)
{