| 3 | import "github.com/fogleman/gg" |
| 4 | |
| 5 | type Shape interface { |
| 6 | Rasterize() []Scanline |
| 7 | Copy() Shape |
| 8 | Mutate() |
| 9 | Draw(dc *gg.Context, scale float64) |
| 10 | SVG(attrs string) string |
| 11 | } |
| 12 | |
| 13 | type ShapeType int |
| 14 |
no outgoing calls
no test coverage detected
searching dependent graphs…