| 88 | const float *msd; |
| 89 | bool protectedFlag; |
| 90 | inline ShapeDistanceChecker(const BitmapConstSection<float, N> &sdf, const Shape &shape, const Projection &projection, DistanceMapping distanceMapping, double minImproveRatio) : distanceFinder(shape), sdf(sdf), distanceMapping(distanceMapping), minImproveRatio(minImproveRatio) { |
| 91 | texelSize = projection.unprojectVector(Vector2(1)); |
| 92 | } |
| 93 | inline ArtifactClassifier classifier(const Vector2 &direction, double span) { |
| 94 | return ArtifactClassifier(this, direction, span); |
| 95 | } |
nothing calls this directly
no test coverage detected