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 20:12:58 +0300
committerJoseph Gilbert <ascotan@gmail.com>2003-11-17 20:12:58 +0300
commitf2a9e3434643ed5b44342c5eb46bb8216edabf78 (patch)
tree363347209679f606c17b44ab1dc620bd9b7e682d /source/blender/python/api2_2x/NMesh.h
parentb5e6b84dc8daefb9d80eb2957e553d03528eff9a (diff)
- added vgrouping methods for renaming headers
Diffstat (limited to 'source/blender/python/api2_2x/NMesh.h')
-rw-r--r--source/blender/python/api2_2x/NMesh.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/NMesh.h b/source/blender/python/api2_2x/NMesh.h
index 27c1959c5a4..64d7b98f9dd 100644
--- a/source/blender/python/api2_2x/NMesh.h
+++ b/source/blender/python/api2_2x/NMesh.h
@@ -135,6 +135,12 @@ return a python list representing the indeces that are a part of this vertex.\n\
group. If no association was found for the index passed nothing will be\n\
return for the index. An optional flag will also return the weights as well";
+static char NMesh_renameVertGroup_doc[] =
+"Renames a vertex group";
+
+static char NMesh_getVertGroupNames_doc[] =
+"Returns a list of all the vertex group names";
+
static char M_NMesh_doc[] =
"The Blender.NMesh submodule";
@@ -306,6 +312,8 @@ static PyObject *NMesh_removeVertGroup(PyObject *self, PyObject *args);
static PyObject *NMesh_assignVertsToGroup(PyObject *self, PyObject *args);
static PyObject *NMesh_removeVertsFromGroup(PyObject *self, PyObject *args);
static PyObject *NMesh_getVertsFromGroup(PyObject *self, PyObject *args);
+static PyObject *NMesh_renameVertGroup (PyObject *self, PyObject *args);
+static PyObject *NMesh_getVertGroupNames (PyObject *self, PyObject *args);
#endif /* EXPP_NMESH_H */