|
Circle Constructor (Double, Double, Double)
|
Creates a new
Circle with the given radius
centered at the given
x and
y coordinates.
Namespace:
Accord.Math.Geometry
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public Circle(
double x,
double y,
double radius
)
Public Sub New (
x As Double,
y As Double,
radius As Double
)
Request Example
View SourceParameters
- x
- Type: SystemDouble
The x-coordinate of the circle's center. - y
- Type: SystemDouble
The y-coordinate of the circle's center. - radius
- Type: SystemDouble
The circle radius.
See Also