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>2003-11-06 21:17:05 +0300
committerStephen Swaney <sswaney@centurytel.net>2003-11-06 21:17:05 +0300
commite2e6bc37a9da31d5a10bff1191836ee253a9f42c (patch)
tree51c7ac414dde276f40bf236cc51de390a757fa7d /source/blender/python/api2_2x/doc/Curve.py
parentb9cdf97e197ff30ae2b354d0af834e96d4ce7319 (diff)
setControlPoint() had incorrect argument list.
also some minor reformatting.
Diffstat (limited to 'source/blender/python/api2_2x/doc/Curve.py')
-rw-r--r--source/blender/python/api2_2x/doc/Curve.py33
1 files changed, 20 insertions, 13 deletions
diff --git a/source/blender/python/api2_2x/doc/Curve.py b/source/blender/python/api2_2x/doc/Curve.py
index f8cc36540df..3b057641d47 100644
--- a/source/blender/python/api2_2x/doc/Curve.py
+++ b/source/blender/python/api2_2x/doc/Curve.py
@@ -71,14 +71,14 @@ class Curve:
@param name: The new name.
"""
- def getPathlen():
+ def getPathLen():
"""
Get this Curve's path length.
@rtype: int
@return: the path length.
"""
- def setPathlen(len):
+ def setPathLen(len):
"""
Set this Curve's path length.
@rtype: PyNone
@@ -105,9 +105,12 @@ class Curve:
"""
Get the Curve mode value.
The mode of the curve is a combination of 4 parameters.
- Bits 0,1,2 : "Back", "Front" and "3D".
- Bit 3 : "CurvePath" is set.
- Bit 4 : "CurveFollow" is set.
+ - Bit 0 : "Back" is set
+ - Bit 1 : "Front" is set
+ - Bit 2 : "3D" is set
+ - Bit 3 : "CurvePath" is set.
+ - Bit 4 : "CurveFollow" is set.
+
@rtype: int
"""
@@ -116,7 +119,7 @@ class Curve:
Set the Curve mode value.
@rtype: PyNone
@type val: int
- @param val : The new Curve's mode value.
+ @param val : The new Curve's mode value. See L{getMode} for the meaning of the bit fields.
"""
def getBevresol():
@@ -203,24 +206,28 @@ class Curve:
@param ext2: The new Curve's ext2 value.
"""
- def getControlpoint(numcurve,numpoint):
+ def getControlPoint(numcurve,numpoint):
"""
Get the curve's control point value.
@type numcurve: int
@type numpoint: int
@rtype: list
- @return: depends upon the curve's type.\n
- type bezier : a list of three coordinates\n
- type nurbs : a list of nine coordinates.
+ @return: depends upon the curve's type.
+ - type bezier : a list of three coordinates
+ - type nurbs : a list of nine coordinates.
"""
- def setControlpoint(controlpoint):
+ def setControlPoint( numcurve, numpoint, controlpoint):
"""
Set the Curve's controlpoint value.
@rtype: PyNone
+ @type numcurve: int
+ @type numpoint: int
@type controlpoint: list
- @param controlpoint: The new Curve's controlpoint value.\n
- see getControlpoint for the length of the list.
+ @param numcurve: index for spline in Curve, starting from 0
+ @param numpoint: index for point in spline, starting from 0
+ @param controlpoint: The new controlpoint value.
+ See L{getControlPoint} for the length of the list.
"""
def getLoc():