Point

@Serializable
data class Point(val x: Int, val y: Int)

Represents point in the quadrilateral.

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.