Show / Hide Table of Contents

Struct POINT

Point coordinates x y.

public record struct POINT : IEquatable<POINT>

Namespace: Au.Types
Assembly: Au.dll

Constructors

Name Description
POINT(int, int)

Fields

Name Description
x
y

Methods

Name Description
Deconstruct(out int, out int)
From(PointF, bool)
From(Point, bool)
Offset(int, int)

this.x += x; this.y += y;

ToString()

Returns the fully qualified type name of this instance.

Operators

Name Description
operator +(POINT, (int x, int y))

Returns new POINT(p.x + d.x, p.y + d.y).

implicit operator Point(POINT)
implicit operator PointF(POINT)
implicit operator Point(POINT)
implicit operator POINT(Point)
implicit operator POINT((int x, int y))