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