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>2004-05-25 07:26:29 +0400
committerJoseph Gilbert <ascotan@gmail.com>2004-05-25 07:26:29 +0400
commit779d0d02213c8a783a4f5a3935c0a7d96c4b3850 (patch)
tree97995ed4ec0993f42d72b86faef654e022ed9778 /source/blender/python/api2_2x/doc/Render.py
parent130878697436aeae0fe06fbf249dd6b483f2e0f5 (diff)
- documentation update for new functions
- error corrections in NLA about dictionaries
Diffstat (limited to 'source/blender/python/api2_2x/doc/Render.py')
-rw-r--r--source/blender/python/api2_2x/doc/Render.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/doc/Render.py b/source/blender/python/api2_2x/doc/Render.py
index e113f1b9140..c743aa36d8d 100644
--- a/source/blender/python/api2_2x/doc/Render.py
+++ b/source/blender/python/api2_2x/doc/Render.py
@@ -389,6 +389,22 @@ class RenderData:
@param toggle: pass 1 for on / 0 for off
"""
+ def setBorder(left,bottom,right,top):
+ """
+ Set a border for rendering from cameras in the scene.
+ The left,bottom coordinates and right,top coordinates
+ define the size of the border. (0,0,1,1) will set the border
+ to the whole camera. (0,0) lower left and (1,1) upper right.
+ @type left: float
+ @param left: float between 0 and 1
+ @type right: float
+ @param right: float between 0 and 1
+ @type bottom: float
+ @param bottom: float between 0 and 1
+ @type top: float
+ @param top: float between 0 and 1
+ """
+
def enableGammaCorrection(toggle):
"""
Enable/disable gamma correction.