RectI

data class RectI(    var x: Int,     var y: Int,     var width: Int,     var height: Int)

Constructors

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

Properties

Link copied to clipboard
var height: Int
Link copied to clipboard
var width: Int
Link copied to clipboard
var x: Int
Link copied to clipboard
var y: Int