termui/point.go

24 lines
300 B
Go
Raw Normal View History

2015-02-03 14:07:31 +00:00
package termui
type Point struct {
2015-03-03 18:28:09 +00:00
Ch rune
Bg Attribute
Fg Attribute
X int
Y int
}
func newPoint(c rune, x, y int) (p Point) {
p.Ch = c
p.X = x
p.Y = y
return
}
func newPointWithAttrs(c rune, x, y int, fg, bg Attribute) Point {
p := newPoint(c, x, y)
p.Bg = bg
p.Fg = fg
return p
2015-02-03 14:07:31 +00:00
}