8 lines
110 B
Go
8 lines
110 B
Go
package gg
|
|
|
|
type Point = Vector
|
|
type Points []Point
|
|
|
|
func (pts Points) Empty() bool {
|
|
return len(pts) == 0
|
|
}
|