Home | Trees | Indices | Help |
|
---|
|
The Blender.Ipo submodule
New:This module provides access to the Ipo Data in Blender. An Ipo is composed of several IpoCurves, and an IpoCurve is composed of several BezTriples.
Example:from Blender import Ipo ipo = Ipo.Get('ObIpo') # retrieves an Ipo object ipo.name = 'ipo1' # change the Ipo's name icu = ipo[Ipo.OB_LOCX] # request X Location Ipo curve if icu != None and len(icu.bezierPoints) > 0: # if curve exists and has BezTriple points val = icu[2.5] # get the curve's value at time 2.5 ipo[Ipo.OB_LOCX] = None # delete the Ipo curveEach type of Ipo has different types Ipocurves. With the exception of Shape Key Ipos, constants are used to specify all Ipocurves. There are two ways to tell which Ipo curves go with which Ipo type:
Classes | |
Ipo This object gives access to Ipo data from all objects in Blender. |
Functions | |||
Blender Ipo |
|
||
Blender Ipo or a list of Blender Ipos |
|
Function Details |
|
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0beta1 on Mon May 19 15:32:19 2008 | http://epydoc.sourceforge.net |