ApproximationCircle

Get approximate circle

ApproximationCircle <count>, <x()>, <y()>, <centerX>, <centerY>, <radius>

Parameters
<count>
The number of coordinates that will be calculated for the approximate circle
<x()>
X coordinate array of the point for calculating the approximate circle (integer or double-precision array)
<y()>
Y coordinate array of the point for calculating the approximate circle (integer or double-precision array)
<centerX>
X coodinate of approximate circle
<centerY>
Y coodinate of approximate circle
<radius>
radius of approximate circle

Return Value
None.

Description
Calculate approximate circle from multiple coordinates.
<count> is the number of coordinates that will be calculated for the approximate circle.
The integer type or double-precision type array variables of one dimension that stores the corrdinates of the point for calculating the approximate circle are specified for the argument <x()> and <y()> in shape to add only () without specifying the element number like X&().
<centerX>, <centerY>, and <radius> are center X, Y coordinate, and radius of the approximate circle.

Notes