[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [14896] trunk/blender/source/blender/ python/api2_2x/doc: more updates to docs

Campbell Barton ideasman42 at gmail.com
Mon May 19 15:34:43 CEST 2008


Revision: 14896
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=14896
Author:   campbellbarton
Date:     2008-05-19 15:34:43 +0200 (Mon, 19 May 2008)

Log Message:
-----------
more updates to docs

Modified Paths:
--------------
    trunk/blender/source/blender/python/api2_2x/doc/API_intro.py
    trunk/blender/source/blender/python/api2_2x/doc/Blender.py
    trunk/blender/source/blender/python/api2_2x/doc/Mesh.py
    trunk/blender/source/blender/python/api2_2x/doc/Render.py

Modified: trunk/blender/source/blender/python/api2_2x/doc/API_intro.py
===================================================================
--- trunk/blender/source/blender/python/api2_2x/doc/API_intro.py	2008-05-19 13:15:07 UTC (rev 14895)
+++ trunk/blender/source/blender/python/api2_2x/doc/API_intro.py	2008-05-19 13:34:43 UTC (rev 14896)
@@ -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 @@
 			- L{ActionStrips<NLA>}
 		- L{Particle}
 		- L{Registry}
-		- L{Scene} (*)
+		- L{Scene}
 			- L{Radio}
 			- L{Render}
 		- L{Sound}

Modified: trunk/blender/source/blender/python/api2_2x/doc/Blender.py
===================================================================
--- trunk/blender/source/blender/python/api2_2x/doc/Blender.py	2008-05-19 13:15:07 UTC (rev 14895)
+++ trunk/blender/source/blender/python/api2_2x/doc/Blender.py	2008-05-19 13:34:43 UTC (rev 14896)
@@ -116,6 +116,14 @@
   @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 @@
   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
+  """

Modified: trunk/blender/source/blender/python/api2_2x/doc/Mesh.py
===================================================================
--- trunk/blender/source/blender/python/api2_2x/doc/Mesh.py	2008-05-19 13:15:07 UTC (rev 14895)
+++ trunk/blender/source/blender/python/api2_2x/doc/Mesh.py	2008-05-19 13:34:43 UTC (rev 14896)
@@ -667,6 +667,8 @@
 		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

Modified: trunk/blender/source/blender/python/api2_2x/doc/Render.py
===================================================================
--- trunk/blender/source/blender/python/api2_2x/doc/Render.py	2008-05-19 13:15:07 UTC (rev 14895)
+++ trunk/blender/source/blender/python/api2_2x/doc/Render.py	2008-05-19 13:34:43 UTC (rev 14896)
@@ -399,6 +399,16 @@
   @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):





More information about the Bf-blender-cvs mailing list