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:
authorJoseph Gilbert <ascotan@gmail.com>2003-11-17 10:22:29 +0300
committerJoseph Gilbert <ascotan@gmail.com>2003-11-17 10:22:29 +0300
commit61f203c80b72c4f63bbaa07fab86e8a245ae8a37 (patch)
tree607cec8eb5bd6f2bc2d2102676d835b05ec9dc49 /source/blender/python/api2_2x/doc/NMesh.py
parent33da577d3459907b23324b747e4b8a5378eaa352 (diff)
- added vgrouping methods for renaming to documentation
Diffstat (limited to 'source/blender/python/api2_2x/doc/NMesh.py')
-rw-r--r--source/blender/python/api2_2x/doc/NMesh.py19
1 files changed, 19 insertions, 0 deletions
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].
"""
+
+