Lines Matching refs:Points
30 Points []Point member
63 g.Points = append(g.Points, pt)
68 if len(g.Points) == 0 {
71 sort.Sort(pointSlice(g.Points))
115 max := g.Points[len(g.Points)-1].Time
119 skip := sort.Search(len(g.Points), func(i int) bool {
120 return g.Points[i].Time > skipTime
122 g.Points = g.Points[skip:]
136 for _, pt := range g.Points {
144 for pti := len(g.Points) - 1; pti >= 0; pti-- {
145 pt := g.Points[pti]
168 for j := len(g.Points) - 1; j >= 0; j-- {
169 if v := g.Points[j].Vals[x]; v != 0 {
231 {{range $graph.Points}} [ {{.Time}}, {{range .Vals}} {{if .}} {{.}} {{end}}, {{end}}