| 162 | } |
| 163 | |
| 164 | XYPathPtr XYPath::NewCirclePath() { |
| 165 | auto path = fl::make_shared<CirclePath>(); |
| 166 | return fl::make_shared<XYPath>(path); |
| 167 | } |
| 168 | |
| 169 | XYPathPtr XYPath::NewCirclePath(u16 width, u16 height) { |
| 170 | CirclePathPtr path = fl::make_shared<CirclePath>(); |
nothing calls this directly
no test coverage detected