-
Notifications
You must be signed in to change notification settings - Fork 0
/
shape.go
37 lines (32 loc) · 853 Bytes
/
shape.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package main
import "image"
// Area returns the bounds in which the list elements can reside
func (c *Grid) Area() image.Rectangle {
dy := c.Tag.Loc().Dy()
r := c.Loc()
r.Min.Y += dy
return r
}
// Minor returns the a point in Grid where Y is top-aligned
// and X is clamped between min.X and max.X
func (c *Grid) Minor(pt image.Point) image.Point {
pt.Y = c.Area().Min.Y
pt.X = clampx(pt.X, c.Area().Min.X, c.Area().Max.X)
return pt
}
// Major returns the a point in Col where X is right-aligned
// and X is clamped between min.X and max.X
func (c *Grid) Major(pt image.Point) image.Point {
pt.Y = c.Area().Max.Y //-c.Area().Min.Y
pt.X = clampx(pt.X, c.Area().Min.X, c.Area().Max.X) //-c.Area().Min.X
return pt
}
func clampx(v, l, h int) int {
if v < l {
return l
}
if v > h {
return h
}
return v
}