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
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/rst/include__bmesh.rst4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/python_api/rst/include__bmesh.rst b/doc/python_api/rst/include__bmesh.rst
index f3d3b0257be..a55bf71b60f 100644
--- a/doc/python_api/rst/include__bmesh.rst
+++ b/doc/python_api/rst/include__bmesh.rst
@@ -101,7 +101,9 @@ Here are some examples ...
for face in bm.faces:
for loop in face.loops:
uv = loop[uv_lay].uv
- print("Loop UV: %f, %f" % (uv.x, uv.y))
+ print("Loop UV: %f, %f" % uv[:])
+ vert = loop.vert
+ print("Loop Vert: (%f,%f,%f)" % vert.co[:])
.. code-block:: python