(attrs string)
| 36 | } |
| 37 | |
| 38 | func (t *Triangle) SVG(attrs string) string { |
| 39 | return fmt.Sprintf( |
| 40 | "<polygon %s points=\"%d,%d %d,%d %d,%d\" />", |
| 41 | attrs, t.X1, t.Y1, t.X2, t.Y2, t.X3, t.Y3) |
| 42 | } |
| 43 | |
| 44 | func (t *Triangle) Copy() Shape { |
| 45 | a := *t |
nothing calls this directly
no outgoing calls
no test coverage detected