package org.tamina.geom; class Rectangle { public var left: Int; public var top: Int; public var right: Int; public var bottom: Int; public function new( left: Int, top: Int, right: Int, bottom: Int) { this.left = left; this.top = top; this.right = right; this.bottom = bottom; } }