Point
Overview
Point is a class in Aspose.Slides FOSS for Python.
Inherits from: IPoint.
Represents animation point.
This class provides 4 methods for working with Point objects in Python programs.
Available methods include: __init__, formula, time, value.
All public members are accessible to any Python application after installing the Aspose.Slides FOSS for Python package.
Properties: formula, time, value.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
time | float | Read/Write | Gets or sets the time. |
value | object | Read/Write | Gets or sets the value. |
formula | str | Read/Write | Gets or sets the formula. |
Methods
| Signature | Description |
|---|---|
__init__(time: float, value: object, formula: str) | |
time() → float | Represents time value. |
value() → object | Represents point value. |
formula() → str | 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 . |