more updates to docs

This commit is contained in:
Campbell Barton 2008-05-19 13:34:43 +00:00
parent f32d99c322
commit 195abc755b
4 changed files with 22 additions and 4 deletions

@ -4,8 +4,6 @@
The Blender Python API Reference 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} for a full list of changes since 2.45 see U{http://wiki.blender.org/index.php/Release_Notes/Notes246/Python_API}
Top Module: Top Module:
@ -48,7 +46,7 @@ The Blender Python API Reference
- L{ActionStrips<NLA>} - L{ActionStrips<NLA>}
- L{Particle} - L{Particle}
- L{Registry} - L{Registry}
- L{Scene} (*) - L{Scene}
- L{Radio} - L{Radio}
- L{Render} - L{Render}
- L{Sound} - L{Sound}

@ -116,6 +116,14 @@ def Get (request):
@return: The requested data or None if not found. @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 (): def Redraw ():
""" """
Redraw all 3D windows. Redraw all 3D windows.
@ -245,4 +253,4 @@ def SaveUndoState (message):
Sets an undo at the current state. Sets an undo at the current state.
@param message: Message that appiers in the undo menu @param message: Message that appiers in the undo menu
@type message: string @type message: string
""" """

@ -667,6 +667,8 @@ class MFaceSeq:
True, the method will return a list representing the new index for each 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 face in the input list. If faces are removed as duplicates, None is
inserted in place of the index. 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 @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 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 on in the first or second location in the face. When creating face data

@ -399,6 +399,16 @@ class RenderData:
@type bakeDist: float @type bakeDist: float
@ivar bakeBias: The distance in blender units to bias faces further away from the object. @ivar bakeBias: The distance in blender units to bias faces further away from the object.
@type bakeBias: float @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): def currentFrame(frame = None):