mirror of https://github.com/Chlumsky/msdfgen.git
Error correction fix for inverse Y-axis
This commit is contained in:
parent
85e8b3d47b
commit
cddd6c7308
|
|
@ -89,6 +89,8 @@ public:
|
||||||
bool protectedFlag;
|
bool protectedFlag;
|
||||||
inline ShapeDistanceChecker(const BitmapConstRef<float, N> &sdf, const Shape &shape, const Projection &projection, DistanceMapping distanceMapping, double minImproveRatio) : distanceFinder(shape), sdf(sdf), distanceMapping(distanceMapping), minImproveRatio(minImproveRatio) {
|
inline ShapeDistanceChecker(const BitmapConstRef<float, N> &sdf, const Shape &shape, const Projection &projection, DistanceMapping distanceMapping, double minImproveRatio) : distanceFinder(shape), sdf(sdf), distanceMapping(distanceMapping), minImproveRatio(minImproveRatio) {
|
||||||
texelSize = projection.unprojectVector(Vector2(1));
|
texelSize = projection.unprojectVector(Vector2(1));
|
||||||
|
if (shape.inverseYAxis)
|
||||||
|
texelSize.y = -texelSize.y;
|
||||||
}
|
}
|
||||||
inline ArtifactClassifier classifier(const Vector2 &direction, double span) {
|
inline ArtifactClassifier classifier(const Vector2 &direction, double span) {
|
||||||
return ArtifactClassifier(this, direction, span);
|
return ArtifactClassifier(this, direction, span);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue