z

Class PxlPoint

Represents an integer coordinate within the SDK coordinate space.

Namespace: ImageSdkWrapper Assembly: ImageSdkWrapper.MAUI

Inheritance: object

public class PxlPoint

Constructor

PxlPoint(int, int)

Initialises a point with explicit coordinates.

public PxlPoint(int xx, int yy)

Parameters

  • xx (int)
  • yy (int)

Field

X

X coordinate.

public int X

Returns

  • int

Y

X coordinate.

public int Y

Returns

  • int

Method

Equals(PxlPoint)

Compares two points for coordinate equality.

public bool Equals(PxlPoint o)

Parameters

  • o (PxlPoint): Other point.

Returns

  • bool: true when both coordinates match; otherwise false.

Reset()

Resets the coordinate to the origin.

public void Reset()

Set(int, int)

Updates the coordinate in place.

public void Set(int xx, int yy)

Parameters

  • xx (int)
  • yy (int)
Top