()
| 118 | type Paths []Path |
| 119 | |
| 120 | func (p Paths) BoundingBox() Box { |
| 121 | box := p[0].BoundingBox() |
| 122 | for _, path := range p { |
| 123 | box = box.Extend(path.BoundingBox()) |
| 124 | } |
| 125 | return box |
| 126 | } |
| 127 | |
| 128 | func (p Paths) Transform(matrix Matrix) Paths { |
| 129 | var result Paths |
nothing calls this directly
no test coverage detected