From 61f203c80b72c4f63bbaa07fab86e8a245ae8a37 Mon Sep 17 00:00:00 2001 From: Joseph Gilbert Date: Mon, 17 Nov 2003 07:22:29 +0000 Subject: [PATCH] - added vgrouping methods for renaming to documentation --- source/blender/python/api2_2x/doc/NMesh.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/source/blender/python/api2_2x/doc/NMesh.py b/source/blender/python/api2_2x/doc/NMesh.py index 533cf80195e..8d3031fdba6 100644 --- a/source/blender/python/api2_2x/doc/NMesh.py +++ b/source/blender/python/api2_2x/doc/NMesh.py @@ -491,6 +491,23 @@ class NMesh: list and group passed in are returned. """ + def renameVertGroup(groupName, newName): + """ + Renames a vertex group. + @type groupName: string + @param groupName: the vertex group name to be renamed. + @type newName: string + @param newName: the name to replace the old name. + """ + + def getVertGroupNames(): + """ + Return a list of all vertex group names. + @rtype: list of strings + @return: returns a list of strings representing all vertex group + associated with the mesh's object + """ + def getMaxSmoothAngle(): """ Get the max angle for auto smoothing. @@ -517,3 +534,5 @@ class NMesh: @param subdiv: new subdiv levels: [display, render]. Both are clamped to lie in the range [1, 6]. """ + +