expanding bmesh example (py api)

This commit is contained in:
Dalai Felinto
2012-05-22 18:14:34 +00:00
parent 89b1a2bbcf
commit 800e79c088

View File

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