()
| 41 | } |
| 42 | |
| 43 | func (s *TransformedShape) BoundingBox() Box { |
| 44 | return s.Matrix.MulBox(s.Shape.BoundingBox()) |
| 45 | } |
| 46 | |
| 47 | func (s *TransformedShape) Contains(v Vector, f float64) bool { |
| 48 | return s.Shape.Contains(s.Inverse.MulPosition(v), f) |
nothing calls this directly
no test coverage detected