|
Circle Constructor (Single, Single, 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(
float x,
float y,
double radius
)
Public Sub New (
x As Single,
y As Single,
radius As Double
)
Request Example
View SourceParameters
- x
- Type: SystemSingle
The x-coordinate of the circle's center. - y
- Type: SystemSingle
The y-coordinate of the circle's center. - radius
- Type: SystemDouble
The circle radius.
See Also