Correspondence points add a relation to the interpolation of two
curves. These points are made up of two values; a t-value on the source
curve and a corresponding t-value on the destination curve T-values
should be in the range [0-1], where 0 is the start of the curve, and 1 is
the end of the curve
|
|
|
|
|
|
|
|
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value |
|
|
|
|
addPoint(cps,
time,
t_src,
t_dest)
Adds a correspondence point |
|
|
|
AnimCurve
|
getAnimCurve(cps,
index,
which)
Returns:
An AnimCurve object for the timeline of the specified point and
src/dest value |
|
|
|
|
getNumPoints(cps)
Returns:
Returns the number of correspondence points in the object |
|
|
|
(t_stc, t_dest)
|
getPointValues(cps,
time,
index)
Returns:
A tuple containing source and destionation t-values |
|
|
|
|
|
|
|
|
|
|
reset(...)
cps->reset() Resets the correspondence points object to empty |
|
|
|
Inherited from object:
__format__,
__hash__,
__init__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__sizeof__,
__str__,
__subclasshook__
|