Contains reports whether the container contains the given point.
(p Point)
| 43 | type Container interface { |
| 44 | // Contains reports whether the container contains the given point. |
| 45 | Contains(p Point) bool |
| 46 | } |
| 47 | |
| 48 | // Point describes a coordinate in a 2 dimensional euclidean space |
no outgoing calls