Click or drag to resize
DrawingWindowDrawCirle Method
Draws a 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 void DrawCirle(
	DrawingVisual v,
	double x,
	double y,
	double radius
)

Parameters

v
Type: System.Windows.MediaDrawingVisual
The rendered visual
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
Exceptions
ExceptionCondition
ArgumentExceptionif {@code radius} is negative
See Also