github.com/egonelbre/exp@v0.0.0-20240430123955-ed1d3aa93911/dos/ui/geom.go (about)

     1  package ui
     2  
     3  type Rect struct {
     4  	Left, Top     int
     5  	Width, Height int
     6  }
     7  
     8  func (r Rect) Bounds() Rect { return r }