func (a *Line) Height() int {
    v := []int{intAbs(a.Start.Y - a.End.Y)}
    if a.Head != nil {
        v = append(v, a.Head.Height())
    }