[Bf-blender-cvs] [727f15f] master: Docs: note that BMesh loops are accessed via faces

Campbell Barton noreply at git.blender.org
Mon Apr 25 03:59:19 CEST 2016


Commit: 727f15f7d8820f1dc9277fdabcfce47bdb9935fe
Author: Campbell Barton
Date:   Mon Apr 25 11:57:52 2016 +1000
Branches: master
https://developer.blender.org/rB727f15f7d8820f1dc9277fdabcfce47bdb9935fe

Docs: note that BMesh loops are accessed via faces

Resolves T48258

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

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

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

diff --git a/source/blender/python/bmesh/bmesh_py_types.c b/source/blender/python/bmesh/bmesh_py_types.c
index ce8f124..3c45cb9 100644
--- a/source/blender/python/bmesh/bmesh_py_types.c
+++ b/source/blender/python/bmesh/bmesh_py_types.c
@@ -223,7 +223,11 @@ static PyObject *bpy_bmfaceseq_get(BPy_BMesh *self, void *UNUSED(closure))
 }
 
 PyDoc_STRVAR(bpy_bmloopseq_doc,
-"This meshes face sequence (read-only).\n\n:type: :class:`BMLoopSeq`"
+"This meshes loops (read-only).\n\n:type: :class:`BMLoopSeq`\n"
+"\n"
+".. note::\n"
+"\n"
+"   Loops must be accessed via faces, this is only exposed for layer access.\n"
 );
 static PyObject *bpy_bmloopseq_get(BPy_BMesh *self, void *UNUSED(closure))
 {




More information about the Bf-blender-cvs mailing list