Point

Point class

Represent animation point.

public class Point : IPoint

Constructors

NameDescription
Point()Default constructor.
Point(float, object, string)Create animation point with time, value and formula.

Properties

NameDescription
Formula { get; set; }Formulas 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(-2pi*(1-$))-#ppt_x-sin(-2pi*(1-$))(1-#ppt_y))(1-$)” Read/write String.
Time { get; set; }Represents time value. Read/write Single.
Value { get; set; }Represents point value. Only: bool, ColorFormat, float, int, string. Read/write Object.

See Also