| 272 | } |
| 273 | |
| 274 | type testContainer struct { |
| 275 | bounds AABB |
| 276 | } |
| 277 | |
| 278 | func (c testContainer) Contains(p Point) bool { |
| 279 | if p.X <= c.bounds.Max.X && p.X >= c.bounds.Min.X && p.Y <= c.bounds.Max.Y && p.Y >= c.bounds.Min.Y { |
nothing calls this directly
no outgoing calls
no test coverage detected