Point

Point class

Represent animation point.

The Point type exposes the following members:

Constructors

NameDescription
Point()Default constructor.
Point(time, value, formula)Initializes a new instance of the Point class

Properties

NameDescription
timeRepresents time value.
Read/write
valueRepresents point value.
Only: bool, ColorFormat, float, int, string.
Read/write object.
formulaFormulas within values, from, to, by attributes can be made up of these:
Standard arithmetic operators: ‘+’, ‘-‘, ‘’, ‘/’, ‘^’, ‘%’ (mod)
Constants: ‘pi’ ‘e’
Conditional operators: ‘abs’, ‘min’, ‘max’, ‘?’ (if)
Comparison operators: ‘==’, ‘>=’, ‘’, ‘!=’, ‘!’
Trigonometric operators: ‘sin()’, ‘cos()’, ‘tan()’, ‘asin()’, ‘acos()’, ‘atan()’
Natural logarithm ‘ln()’
Property references (host supported properties)

for example: “#ppt_x+(cos(-2
pi*(1-$))-#ppt_x-sin(-2pi*(1-$))(1-#ppt_y))(1-$)"
Read/write string.

See Also