simplify to the output vector.
| 53 | |
| 54 | // simplify to the output vector. |
| 55 | void simplify(const fl::span<const Point> &polyLine, |
| 56 | fl::vector<Point> *out) { |
| 57 | simplifyT(polyLine, out); |
| 58 | } |
| 59 | template <typename VectorType> |
| 60 | void simplify(const fl::span<Point> &polyLine, VectorType *out) { |
| 61 | simplifyT(polyLine, out); |
no outgoing calls
no test coverage detected