Base Class: None
Derived Classes: None
Description
This object gathers together all of the functionality needed to capture images and convert them into animation. It is equivalent to the animation toolbar in the Modeller user interface.
Example
' set up animation frames
for i = 0 to 8 step 1
deform = 9*sin(i*step)
call view.setDeformationMagnitude(deform)
call animation.addFrame()
next
' create animation
call animation.create()
' stop animation
call getCurrentAnimation().stop()
Available Functions:
addFrame() |
clearFrames() |
create() |
deleteFrame(frameNo) |
overwriteFrame(frameNo) |
Back to Overview