| 138 | // Legacy API |
| 139 | |
| 140 | void generatePseudoSDF(const BitmapSection<float, 1> &output, const Shape &shape, const Projection &projection, Range range, const GeneratorConfig &config) { |
| 141 | generatePSDF(output, shape, SDFTransformation(projection, range), config); |
| 142 | } |
| 143 | |
| 144 | void generateSDF(const BitmapSection<float, 1> &output, const Shape &shape, Range range, const Vector2 &scale, const Vector2 &translate, bool overlapSupport) { |
| 145 | generateSDF(output, shape, Projection(scale, translate), range, GeneratorConfig(overlapSupport)); |
nothing calls this directly
no test coverage detected