| 186 | } |
| 187 | |
| 188 | XYPathPtr XYPath::NewArchimedeanSpiralPath(u16 width, u16 height) { |
| 189 | ArchimedeanSpiralPathPtr path = fl::make_shared<ArchimedeanSpiralPath>(); |
| 190 | XYPathPtr out = fl::make_shared<XYPath>(path); |
| 191 | out->setDrawBounds(width, height); |
| 192 | return out; |
| 193 | } |
| 194 | |
| 195 | XYPathPtr XYPath::NewArchimedeanSpiralPath() { |
| 196 | ArchimedeanSpiralPathPtr path = fl::make_shared<ArchimedeanSpiralPath>(); |
nothing calls this directly
no test coverage detected