/** Distribute the points clockwise around the circle. */ public static const CLOCKWISE : String = "clockwise" ; /** Distribute the points counterclockwise around the circle. */ public static const COUNTERCLOCKWISE : String = "counterclockwise" ; /** * This method accepts arguments based on the size and position of your circle * along with the amount of points to distribute around the circle, * what angle to start the first point, which direction to plot the points, * how much of the circumference to use for the distribution, and which direction * around the circle to plot the points. * @example example: * * @param centerx The center x position of the circle to place the points around. * @param centery The center y position of the circle to place the points around. * @param radi The radius of the circle to distribute the points around. * @param total The total amount of point to distribute around the circle. * @param startangle [Optional] The starting angle of the first point.