SKCanvas.DrawPoint Method

Definition

Overloads

DrawPoint(SKPoint, SKColor)

Draws a point in the canvas with the specified color.

DrawPoint(SKPoint, SKPaint)

Draws a point in the canvas with the specified color.

DrawPoint(Single, Single, SKColor)

Draws a point in the canvas with the specified color.

DrawPoint(Single, Single, SKPaint)

Draws a point in the canvas with the specified color.

DrawPoint(SKPoint, SKColor)

Draws a point in the canvas with the specified color.

public void DrawPoint (SkiaSharp.SKPoint p, SkiaSharp.SKColor color);

Parameters

p
SKPoint

The coordinates for the point to draw.

color
SKColor

The color to use.

Applies to

DrawPoint(SKPoint, SKPaint)

Draws a point in the canvas with the specified color.

public void DrawPoint (SkiaSharp.SKPoint p, SkiaSharp.SKPaint paint);

Parameters

p
SKPoint

The coordinates for the point to draw.

paint
SKPaint

The paint to use when drawing the point.

Applies to

DrawPoint(Single, Single, SKColor)

Draws a point in the canvas with the specified color.

public void DrawPoint (float x, float y, SkiaSharp.SKColor color);

Parameters

x
Single

The x-coordinate for the point to draw.

y
Single

The y-coordinate for the point to draw.

color
SKColor

The color to use.

Applies to

DrawPoint(Single, Single, SKPaint)

Draws a point in the canvas with the specified color.

public void DrawPoint (float x, float y, SkiaSharp.SKPaint paint);

Parameters

x
Single

The x-coordinate for the point to draw.

y
Single

The y-coordinate for the point to draw.

paint
SKPaint

The paint to use when drawing the point.

Applies to