SKPointI Constructors

Definition

Overloads

SKPointI(SKSizeI)

Initializes a new instance of the SKPointI class from a SKSizeI.

SKPointI(Int32, Int32)

Initializes a point from two floating point values.

SKPointI(SKSizeI)

Initializes a new instance of the SKPointI class from a SKSizeI.

public SKPointI (SkiaSharp.SKSizeI sz);

Parameters

sz
SKSizeI

A SKSizeI that specifies the coordinates for the new SKPointI.

Applies to

SKPointI(Int32, Int32)

Initializes a point from two floating point values.

public SKPointI (int x, int y);

Parameters

x
Int32

The horizontal position of the point.

y
Int32

The vertical position of the point.

Applies to