class Point(val x: Int, val y: Int)

A point in a 2D coordinate system

Constructors

Link copied to clipboard
constructor(x: Int, y: Int)

Properties

Link copied to clipboard
val x: Int

The x coordinate of the point

Link copied to clipboard
val y: Int

The y coordinate of the point