RectangleInt

data class RectangleInt(val left: Int, val top: Int, val right: Int, val bottom: Int)

Rectangle in two-dimensional euclidean space.

Constructors

Link copied to clipboard
fun RectangleInt(left: Int, top: Int, right: Int, bottom: Int)

Properties

Link copied to clipboard
val bottom: Int

Bottom edge.

Link copied to clipboard
val left: Int

Left edge.

Link copied to clipboard
val right: Int

Right edge.

Link copied to clipboard
val top: Int

Top edge.