圆路径的类,从半径创建。圆心将为 [0, 0].
Example:
var c = new vjgeo.paths.Circle(7);
The radius of the circle.
properities data
圆路径的类,从圆心和半径创建.
Example:
var c = new vjgeo.paths.Circle([10, 10], 7);
The center point of the circle.
The radius of the circle.
properities data
圆形路径类,从 2 个点创建.
Example:
var c = new vjgeo.paths.Circle([5, 15], [25, 15]);
First point on the circle.
Second point on the circle.
properities data
圆形路径的类,从 3 个点创建.
Example:
var c = new vjgeo.paths.Circle([0, 0], [0, 10], [20, 0]);
First point on the circle.
Second point on the circle.
Third point on the circle.
properities data
Generated using TypeDoc
圆路径类.