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:
authorTom Musgrove <LetterRip@gmail.com>2008-02-03 02:58:05 +0300
committerTom Musgrove <LetterRip@gmail.com>2008-02-03 02:58:05 +0300
commit07ccea0ac22f40f15832f71b1b948ca9927b3333 (patch)
tree95ea69a122a50ba0f76f8c12fe867e65663bab6e /source/blender/python/api2_2x/doc
parent3a6a3d0389d6e2cee0f91e721667853ba7fdafc3 (diff)
== Python API - Mesh ==
This patch by Domino Maram adds the function addMultiresLevel
Diffstat (limited to 'source/blender/python/api2_2x/doc')
-rw-r--r--source/blender/python/api2_2x/doc/Mesh.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/doc/Mesh.py b/source/blender/python/api2_2x/doc/Mesh.py
index 7e7514e8b3a..0690b94712b 100644
--- a/source/blender/python/api2_2x/doc/Mesh.py
+++ b/source/blender/python/api2_2x/doc/Mesh.py
@@ -1102,6 +1102,15 @@ class Mesh:
@param name: The name of the new Color layer, 31 characters max.
"""
+ def addMultiresLevel(levels = 1, type = 'catmull-clark'):
+ """
+ Adds multires levels to this mesh.
+ @type levels: int
+ @param levels: The number of levels to add
+ @type type: string
+ @param type: The type of multires level, 'catmull-clark' or 'simple'.
+ """
+
def removeUVLayer(name):
"""
Removes the active UV/Image layer.