Pos

data class Pos(x: Int, y: Int)

A position if a UI element within a grid. The position components may well be negative.

Constructors

Pos
Link copied to clipboard
fun Pos(x: Int, y: Int)

Properties

x
Link copied to clipboard
val x: Int
The grid column.
y
Link copied to clipboard
val y: Int
The grid row.