Point
Inheritance: java.lang.Object
All Implemented Interfaces: com.aspose.slides.IPoint
public class Point implements IPoint
Represent animation point.
Constructors
Constructor | Description |
---|---|
Point() | Default constructor. |
Point(float time, Object value, String formula) | Create animation point with time, value and formula. |
Methods
Method | Description |
---|---|
getTime() | Represents time value. |
setTime(float value) | Represents time value. |
getValue() | Represents point value. |
setValue(Object value) | Represents point value. |
getFormula() | 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(-2*pi*(1-$))*-#ppt_x-sin(-2*pi*(1-$))*(1-#ppt_y))*(1-$)” Read/write String. |
setFormula(String value) | 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(-2*pi*(1-$))*-#ppt_x-sin(-2*pi*(1-$))*(1-#ppt_y))*(1-$)” Read/write String. |
Point()
public Point()
Default constructor.
Point(float time, Object value, String formula)
public Point(float time, Object value, String formula)
Create animation point with time, value and formula.
Parameters:
Parameter | Type | Description |
---|---|---|
time | float | Time value. |
value | java.lang.Object | Point value. |
formula | java.lang.String | Formula. |
getTime()
public final float getTime()
Represents time value. Read/write float.
Returns: float
setTime(float value)
public final void setTime(float value)
Represents time value. Read/write float.
Parameters:
Parameter | Type | Description |
---|---|---|
value | float |
getValue()
public final Object getValue()
Represents point value. Only: bool, ColorFormat, float, int, string. Read/write Object.
Returns: java.lang.Object
setValue(Object value)
public final void setValue(Object value)
Represents point value. Only: bool, ColorFormat, float, int, string. Read/write Object.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.Object |
getFormula()
public final String getFormula()
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(-2*pi*(1-$))*-#ppt_x-sin(-2*pi*(1-$))*(1-#ppt_y))*(1-$)” Read/write String.
Returns: java.lang.String
setFormula(String value)
public final void setFormula(String value)
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(-2*pi*(1-$))*-#ppt_x-sin(-2*pi*(1-$))*(1-#ppt_y))*(1-$)” Read/write String.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |