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:
authorKen Hughes <khughes@pacific.edu>2005-12-21 21:12:28 +0300
committerKen Hughes <khughes@pacific.edu>2005-12-21 21:12:28 +0300
commitea16c447c3461b3af379b5a6723c6916d3bc9032 (patch)
tree52acdc4b67ed604bf6bd928cef496408eace8da4
parent8349f1bc0874c8ee20a61808cc8e5573e57096e2 (diff)
Fix typo in epydocs for Mesh example
-rw-r--r--source/blender/python/api2_2x/doc/Mesh.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/api2_2x/doc/Mesh.py b/source/blender/python/api2_2x/doc/Mesh.py
index 9e1b3e6610f..059be2ba783 100644
--- a/source/blender/python/api2_2x/doc/Mesh.py
+++ b/source/blender/python/api2_2x/doc/Mesh.py
@@ -530,9 +530,9 @@ class MFaceSeq:
me = Mesh.Get("Plane") # get the mesh data called "Plane"
v = me.verts # get vertices
if len(v) >= 6: # if there are enough vertices...
- me.face.extend(v[1],v[2],v[3]) # add a single edge
+ me.faces.extend(v[1],v[2],v[3]) # add a single edge
l=[(v[0],v[1]),(v[0],v[2],v[4],v[5])]
- me.face.extend(l) # add another face
+ me.faces.extend(l) # add another face
@type vertseq: tuple(s) of MVerts
@param vertseq: either two to four MVerts, or sequence (list or tuple)