Package-level declarations

Types

Link copied to clipboard
@Serializable
data class Point(val x: Int, val y: Int)

Represents point in the quadrilateral.

Link copied to clipboard
@Serializable
data class Quadrilateral(val upperLeft: Point, val upperRight: Point, val lowerRight: Point, val lowerLeft: Point)

Represents the quadrilateral.