From 02dcea079e5e281cfb374a58dcf6fa8ead73fa5f Mon Sep 17 00:00:00 2001 From: Ken Hughes Date: Thu, 6 Jul 2006 13:47:21 +0000 Subject: ===Python API=== "Campbell-fix:" correct two minor misspellings in last commits. --- 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 ec04060142c..6afa73c2377 100644 --- a/source/blender/python/api2_2x/doc/Mesh.py +++ b/source/blender/python/api2_2x/doc/Mesh.py @@ -361,7 +361,7 @@ class MEdge: from Blender import Scene, Mesh scn= Scene.GetCurrent() # Current scene, important to be scene aware ob= scn.getActiveObject() # last selected object - me= ob.getData(mesh=1) # thin wrapper dosent copy mesh data like nmesh + me= ob.getData(mesh=1) # thin wrapper doesn't copy mesh data like nmesh total_fgon_eds= total_nor_eds= 0 @@ -513,7 +513,7 @@ class MFace: from Blender import Scene, Mesh, Window scn= Scene.GetCurrent() # Current scene, important to be scene aware ob= scn.getActiveObject() # last selected object - me= ob.getData(mesh=1) # thin wrapper dosent copy mesh data like nmesh + me= ob.getData(mesh=1) # thin wrapper doesn't copy mesh data like nmesh me.faceUV=1 # Enable face, vertex colors for f in me.faces: for i, v in enumerate(f.v): -- cgit v1.2.3