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:
authorCampbell Barton <ideasman42@gmail.com>2008-05-19 17:34:43 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-05-19 17:34:43 +0400
commit195abc755b55c0dafb6a336261a3b2072f6981a4 (patch)
tree4b4fc935b874b2dd1a22ef0375fe98f111755c6c /source/blender/python/api2_2x/doc
parentf32d99c3220bd14c9233d69f2ff7929e683ec1f4 (diff)
more updates to docs
Diffstat (limited to 'source/blender/python/api2_2x/doc')
-rw-r--r--source/blender/python/api2_2x/doc/API_intro.py4
-rw-r--r--source/blender/python/api2_2x/doc/Blender.py10
-rw-r--r--source/blender/python/api2_2x/doc/Mesh.py2
-rw-r--r--source/blender/python/api2_2x/doc/Render.py10
4 files changed, 22 insertions, 4 deletions
diff --git a/source/blender/python/api2_2x/doc/API_intro.py b/source/blender/python/api2_2x/doc/API_intro.py
index 18573815f35..2960d8ed1d2 100644
--- a/source/blender/python/api2_2x/doc/API_intro.py
+++ b/source/blender/python/api2_2x/doc/API_intro.py
@@ -4,8 +4,6 @@
The Blender Python API Reference
================================
- An asterisk (*) means the module has been updated.
-
for a full list of changes since 2.45 see U{http://wiki.blender.org/index.php/Release_Notes/Notes246/Python_API}
Top Module:
@@ -48,7 +46,7 @@ The Blender Python API Reference
- L{ActionStrips<NLA>}
- L{Particle}
- L{Registry}
- - L{Scene} (*)
+ - L{Scene}
- L{Radio}
- L{Render}
- L{Sound}
diff --git a/source/blender/python/api2_2x/doc/Blender.py b/source/blender/python/api2_2x/doc/Blender.py
index 40bf9001a76..964b8f70e8b 100644
--- a/source/blender/python/api2_2x/doc/Blender.py
+++ b/source/blender/python/api2_2x/doc/Blender.py
@@ -116,6 +116,14 @@ def Get (request):
@return: The requested data or None if not found.
"""
+def GetPaths (absolute=0):
+ """
+ Returns a list of files this blend file uses: (libraries, images, sounds, fonts, sequencer movies).
+ @type absolute: bool
+ @param absolute: When true, the absolute paths of every file will be returned.
+ @return: A list for paths (strings) that this blend file uses.
+ """
+
def Redraw ():
"""
Redraw all 3D windows.
@@ -245,4 +253,4 @@ def SaveUndoState (message):
Sets an undo at the current state.
@param message: Message that appiers in the undo menu
@type message: string
- """ \ No newline at end of file
+ """
diff --git a/source/blender/python/api2_2x/doc/Mesh.py b/source/blender/python/api2_2x/doc/Mesh.py
index d8bd7be6566..4a53f869283 100644
--- a/source/blender/python/api2_2x/doc/Mesh.py
+++ b/source/blender/python/api2_2x/doc/Mesh.py
@@ -667,6 +667,8 @@ class MFaceSeq:
True, the method will return a list representing the new index for each
face in the input list. If faces are removed as duplicates, None is
inserted in place of the index.
+ @type smooth: boolean
+ @param smooth: keyword parameter (default is False). If supplied new faces will have smooth enabled.
@warning: Faces using the first vertex at the 3rd or 4th location in the
face's vertex list will have their order rotated so that the zero index
on in the first or second location in the face. When creating face data
diff --git a/source/blender/python/api2_2x/doc/Render.py b/source/blender/python/api2_2x/doc/Render.py
index cf886ad27f1..475a4fc5b10 100644
--- a/source/blender/python/api2_2x/doc/Render.py
+++ b/source/blender/python/api2_2x/doc/Render.py
@@ -399,6 +399,16 @@ class RenderData:
@type bakeDist: float
@ivar bakeBias: The distance in blender units to bias faces further away from the object.
@type bakeBias: float
+ @ivar halfFloat: When enabled use 16bit floats rather then 32bit for OpenEXR files.
+ @type halfFloat: bool
+ @ivar zbuf: When enabled, save the zbuffer with an OpenEXR file
+ @type zbuf: bool
+ @ivar preview: When enabled, save a preview jpeg with an OpenEXR file
+ @type preview: bool
+ @ivar touch: Create an empty file before rendering it.
+ @type touch: bool
+ @ivar noOverwrite: Skip rendering frames when the file exists.
+ @type noOverwrite: bool
"""
def currentFrame(frame = None):