gg/mx/point.go
2024-05-28 13:24:12 +05:00

10 lines
189 B
Go

package mx
// The type provides interface
// to check if an objects
// contains points.
type PointContainer interface {
GetContainedPoints(Vectors) Vectors
ContainsPoint(Vector) bool
}