()
| 107 | } |
| 108 | |
| 109 | func (p Path) ToSVG() string { |
| 110 | var coords []string |
| 111 | for _, v := range p { |
| 112 | coords = append(coords, fmt.Sprintf("%f,%f", v.X, v.Y)) |
| 113 | } |
| 114 | points := strings.Join(coords, " ") |
| 115 | return fmt.Sprintf("<polyline stroke=\"black\" fill=\"none\" points=\"%s\" />", points) |
| 116 | } |
| 117 | |
| 118 | type Paths []Path |
| 119 |