| Home | Trees | Index | Help |
|
|---|
| Module Ipo |
|
The Blender.Ipo submodule
New:This module provides access to the Ipo Data in Blender. An Ipo is composed of several IpoCurves.
A datatype is defined : IpoCurve type. The member functions of this data type are given below.
Example:
import Blender
ob = Blender.Ipo.Get('ipo') # retrieves an Ipo object
ob.setName('ipo1')
print ob.name
print ipo.getRctf()
ipo.setRctf(1,2,3,4)
| Classes | |
|---|---|
BezTriple |
This object gives access to generic data from all beztriple objects in Blender. |
Ipo |
This object gives access to generic data from all objects in Blender. |
IpoCurve |
This object gives access to generic data from all Ipo curves objects in Blender. |
| Function Summary | |
|---|---|
| Blender Ipo or a list of Blender Ipos |
Get the Ipo from Blender. |
| Blender Ipo |
Creates a new Ipo. |
| Function Details |
|---|
Get(name=None)Get the Ipo from Blender.
|
New(type, name)Creates a new Ipo.
|
| Home | Trees | Index | Help |
|
|---|
| Generated by Epydoc 2.1 on Thu Jan 26 09:17:44 2006 | http://epydoc.sf.net |