SKCanvas.DrawCircle Method

Definition

Overloads

DrawCircle(SKPoint, Single, SKPaint)

Draws a circle on the canvas.

DrawCircle(Single, Single, Single, SKPaint)

Draws a circle on the canvas.

DrawCircle(SKPoint, Single, SKPaint)

Draws a circle on the canvas.

public void DrawCircle (SkiaSharp.SKPoint c, float radius, SkiaSharp.SKPaint paint);

Parameters

c
SKPoint

The center coordinates.

radius
Single

The radius for the circle.

paint
SKPaint

The paint to use when drawing the circle.

Applies to

DrawCircle(Single, Single, Single, SKPaint)

Draws a circle on the canvas.

public void DrawCircle (float cx, float cy, float radius, SkiaSharp.SKPaint paint);

Parameters

cx
Single

The center x-coordinate.

cy
Single

The center y-coordinate.

radius
Single

The radius for the circle.

paint
SKPaint

The paint to use when drawing the circle.

Applies to