gg/point.go

8 lines
110 B
Go

package gg
type Point = Vector
type Points []Point
func (pts Points) Empty() bool {
return len(pts) == 0
}