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:
authorStephen Swaney <sswaney@centurytel.net>2004-03-05 08:50:50 +0300
committerStephen Swaney <sswaney@centurytel.net>2004-03-05 08:50:50 +0300
commitdb9f9215cfa1e7958b1b95713d026c91daff1214 (patch)
tree19079a50154a8a942e00a209099773cb285fe91f /source/blender/python/api2_2x/doc/Ipo.py
parent4d1f58ebd0d95df965a0b0248ec82fc3eaf9115e (diff)
Fix for Bug 1045.
Added more detail for method return types in various doc files. Changed version number in epy_docgen.sh to BPY_API_232.
Diffstat (limited to 'source/blender/python/api2_2x/doc/Ipo.py')
-rw-r--r--source/blender/python/api2_2x/doc/Ipo.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/python/api2_2x/doc/Ipo.py b/source/blender/python/api2_2x/doc/Ipo.py
index e3cd01eca53..c6d88f55f34 100644
--- a/source/blender/python/api2_2x/doc/Ipo.py
+++ b/source/blender/python/api2_2x/doc/Ipo.py
@@ -58,7 +58,7 @@ class Ipo:
def getCurves():
"""
Gets all the IpoCurves of the Ipo.
- @rtype: list
+ @rtype: list of IpoCurves
@return: A list (possibly void) containing all the IpoCurves associated to the Ipo object.
"""
def getCurve(curvename):
@@ -237,7 +237,7 @@ class IpoCurve:
def getPoints():
"""
Returns all the points of the ipo curve.
- @rtype: list
+ @rtype: list of BezTriples
@return: the points of the ipo curve.
"""
@@ -254,8 +254,8 @@ class BezTriple:
def getPoints():
"""
Returns the xy coordinates of the Bezier point.
- @rtype: list
- @return: list of the coordinates of the Bezier point.
+ @rtype: list of floats
+ @return: list of the x and y coordinates of the Bezier point.
"""
def setPoints(newval):