Rectangle

data class Rectangle(    val left: Int = 0,     val top: Int = 0,     val width: Int = 0,     val height: Int = 0)

Constructors

Link copied to clipboard
fun Rectangle(    left: Int = 0,     top: Int = 0,     width: Int = 0,     height: Int = 0)

Properties

Link copied to clipboard
val height: Int = 0
Link copied to clipboard
val left: Int = 0
Link copied to clipboard
val top: Int = 0
Link copied to clipboard
val width: Int = 0