* Create a circle based on a center point and a radius. * @param pt center point of circle * @param radius radius of circle * @returns a Group that represents a circle
( pt:PtLike, radius:number )
| 673 | * @returns a Group that represents a circle |
| 674 | */ |
| 675 | static fromCenter( pt:PtLike, radius:number ):Group { |
| 676 | return new Group( new Pt(pt), new Pt(radius, radius) ); |
| 677 | } |
| 678 | |
| 679 | |
| 680 | /** |
no outgoing calls
no test coverage detected