10 lines
189 B
Go
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
|
|
}
|
|
|