OMC::EaseControlPoint Class Reference

Detailed Description

An object that represents the control point of ease column.

Provided by OMC::EaseColumn::control_points. Provides the keyframes and keyframe options associated with a keyframeable bezier column.
Look Through Ease 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.
ease_col = columns["EASE_COLUMN_NAME"]
keyframes = ease_col.control_points #This list provides EaseControlPoint objects.
for keyframe in keyframes:
print( "Key At: %s %s"%( keyframe.frame, keyframe.value ) )

Public Attributes

double value
 The Y value of the control point on its function curve.
 
bool const_segment
 True to indicate that the point is on a constant segment, or false to indicate that the point is not on a constant segment.
 
QString continuity
 The continuity of the curve that follows the point. One of the following values will be returned, in upper-case: CORNER or STRAIGHT.
 
double ease_in
 The number of frames in the ease-in.
 
double ease_in_angle
 The angle of the ease-in handle.
 
double ease_out
 The number of frames in the ease-out.
 
double ease_out_angle
 The angle of the east-out handle.
 
double frame
 The X value (the frame floating point number) of the control point on its column.
 
Inheritance diagram for OMC::EaseControlPoint:
Collaboration diagram for OMC::EaseControlPoint: