OMC::VeloBasedControlPoint Class Reference

Detailed Description

An object that represents the control point of velo based column.

Provided by OMC::VeloBasedColumn::control_points. Provides the keyframes and keyframe options associated with a keyframeable velo-based column.
Look Through Velo-based Keyframes

from ToonBoom import harmony #Import the Harmony Module
sess = harmony.session() #Get access to the Harmony session, this class.
proj = sess.project #Get the active session's currently loaded project.
scene = proj.scene #Get the top scene in the project.
columns = scene.columns #The overall column list of the scene.
velo_col = columns["VELO_COLUMN_NAME"]
keyframes = velo_col.control_points #This list provides VeloBasedControlPoint objects.
for keyframe in keyframes:
print( "Key At: %s %s"%(keyframe.frame, keyframe.value) )

Public Attributes

double value
 The value of the specified point on the Y column.
 
double frame
 The X value (the frame floating point number) of the control point on its column.
 
Inheritance diagram for OMC::VeloBasedControlPoint:
Collaboration diagram for OMC::VeloBasedControlPoint: