From ea16c447c3461b3af379b5a6723c6916d3bc9032 Mon Sep 17 00:00:00 2001 From: Ken Hughes Date: Wed, 21 Dec 2005 18:12:28 +0000 Subject: [PATCH] Fix typo in epydocs for Mesh example --- source/blender/python/api2_2x/doc/Mesh.py | 4 ++-- 1 file 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)