Constructs a full circle with the given center and radius. The radius must not be 0.
Public Sub New(
center As Point2d,
radius As double
)
public CircularArc2d(
Point2d center,
double radius
);
| Parameters | Description |
|---|---|
| Point2d center | Input center of circle |
| double radius | Input radius of circle |