Represents a point with x and y coordinates. Typically used for screen coordinates in pixels.

Definition

object Coordinates {
  x: Float
  y: Float
}

Fields

x

Float The x-coordinate of the point.

y

Float The y-coordinate of the point.