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:
authorWillian Padovani Germano <wpgermano@gmail.com>2003-07-13 20:28:17 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2003-07-13 20:28:17 +0400
commit9cb79c6534ae4a1c51571d59fe93d41706cd2dc3 (patch)
tree5c87e1c30b9efe4f778969dbcd51badaa347cb21 /source/blender/python/api2_2x/doc/Material.py
parent08b6d716b0d09a95cd793f61736866e12f8dc01a (diff)
Exppython:
- "last minute" updates to documentation and two modules.
Diffstat (limited to 'source/blender/python/api2_2x/doc/Material.py')
-rw-r--r--source/blender/python/api2_2x/doc/Material.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/source/blender/python/api2_2x/doc/Material.py b/source/blender/python/api2_2x/doc/Material.py
index 9b42affb83f..07a5c6fa68c 100644
--- a/source/blender/python/api2_2x/doc/Material.py
+++ b/source/blender/python/api2_2x/doc/Material.py
@@ -85,7 +85,6 @@ class Material:
@cvar mode: Mode flags as an or'ed int value. See the Modes dictionary keys
and descriptions in L{Modes}.
@cvar rgbCol: Material's RGB color triplet.
- @cvar ambCol: Ambient color rgb triplet.
@cvar specCol: Specular color rgb triplet.
@cvar mirCol: Mirror color rgb triplet.
@cvar R: Red component of L{rgbCol} - [0.0, 1.0].
@@ -172,22 +171,6 @@ class Material:
- three floats as separate parameters: setRGBCol (r,g,b).
"""
- def getAmbCol():
- """
- Get the ambient color triplet.
- @rtype: list of 3 floats
- @return: [ambR, ambG, ambB]
- """
-
- def setAmbCol(rgb = None):
- """
- Set the ambient color triplet. If B{rgb} is None, set the color to black.
- @type rgb: three floats or a list of three floats
- @param rgb: The rgb color values in [0.0, 1.0] as:
- - a list of three floats: setAmbCol ([r, g, b]) B{or}
- - three floats as separate parameters: setAmbCol (r,g,b).
- """
-
def getSpecCol():
"""
Get the specular color triplet.