Module _curvelib :: Class AnimCurveKey
[hide private]
[frames] | no frames]

Class AnimCurveKey

object --+    
         |    
      Flag --+
             |
            AnimCurveKey

A key value in a parametric curve represented as a value at a particular time.

Instance Methods [hide private]
 
__delattr__(...)
x.__delattr__('name') <==> del x.name
 
__getattribute__(...)
x.__getattribute__('name') <==> x.name
a new object with type S, a subtype of T
__new__(T, S, ...)
 
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
None
reset(self)
Reset this key to its default values.

Inherited from Flag: getFlag, setFlag

Inherited from object: __format__, __hash__, __init__, __reduce__, __reduce_ex__, __repr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  kDefaultAnimCurveKeyInterpolation = 256
  kDefaultAnimCurveKeyTime = 0.0
  kDefaultAnimCurveKeyValue = 0.0
Properties [hide private]
  interpolationType
The interpolation type to use for this key.
  la
The left bicubic value for this key.
  lslope
The left derivative for this key.
  ra
The right bicubic value for this key.
  rslope
The right derivative for this key.
  time
The time this key is set at.
  value
The value for this key.

Inherited from object: __class__

Method Details [hide private]

__delattr__(...)

 

x.__delattr__('name') <==> del x.name

Overrides: object.__delattr__

__getattribute__(...)

 

x.__getattribute__('name') <==> x.name

Overrides: object.__getattribute__

__new__(T, S, ...)

 
Returns: a new object with type S, a subtype of T
Overrides: object.__new__

__setattr__(...)

 

x.__setattr__('name', value) <==> x.name = value

Overrides: object.__setattr__