Click or drag to resize
DrawingWindowDrawFilledCircle Method (Double, Double, Double)
Draws a filled circle of the specified radius, centered at (X, Y).

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public DrawingVisual DrawFilledCircle(
	double x,
	double y,
	double radius
)

Parameters

x
Type: SystemDouble
the X-coordinate of the center of the circle
y
Type: SystemDouble
the Y-coordinate of the center of the circle
radius
Type: SystemDouble
the radius of the circle

Return Value

Type: DrawingVisual
A drawing visual as handle to the drawing
Exceptions
ExceptionCondition
ArgumentExceptionif {@code radius} is negative
See Also