Rect

data class Rect(val left: Int = 0, val top: Int = 0, val right: Int = 0, val bottom: Int = 0)

Constructors

Link copied to clipboard
constructor(left: Int = 0, top: Int = 0, right: Int = 0, bottom: Int = 0)

Properties

Link copied to clipboard
val bottom: Int
Link copied to clipboard
val left: Int
Link copied to clipboard
val right: Int
Link copied to clipboard
val top: Int

Functions

Link copied to clipboard
fun contains(x: Int, y: Int): Boolean
Link copied to clipboard
fun height(): Int
Link copied to clipboard
fun width(): Int