Description
This property allows you to get and set a start point to define an arc.
Syntax
Property get:
Point = Start ( );
|
Return: (Variant) Point |
Array of point coordinates that lie on a circle. |
Property set:
Start( Point );
|
Input: (Variant) Point |
Array of point coordinates that lie on a circle. |
Note
To get the coordinates of a point that lies on a circle with a given center point and radius on a given angle, use the following formulae:
x = CenterX + Radius*cos(Angle),
y = CenterY + Radius * sin(Angle);
where CenterX, CenterY are the X and Y coordinates of a circle center accordingly, Radius - circle radius, Angle - angle on which points lie.