gg/mx/point.go

11 lines
189 B
Go
Raw Permalink Normal View History

2024-05-28 11:24:12 +03:00
package mx
// The type provides interface
// to check if an objects
// contains points.
type PointContainer interface {
GetContainedPoints(Vectors) Vectors
ContainsPoint(Vector) bool
}