Browse Source

Don't reverse TTF contours

Not sure why, but removing this step yields TTF output consistent with
our existing releases. This perhaps implies that our OTF output's
winding direction is wrong, but for now we really only care about TTF
output anyways so I'm just trying to keep that consistent.
James Godfrey-Kittle 8 years ago
parent
commit
2a6fafcd86
1 changed files with 0 additions and 3 deletions
  1. 0 3
      scripts/lib/fontbuild/Build.py

+ 0 - 3
scripts/lib/fontbuild/Build.py

@@ -178,9 +178,6 @@ class FontProject:
         for font in fonts:
             ttfName = self.generateOutputPath(font, "ttf")
             log(os.path.basename(ttfName))
-            for glyph in font:
-                for contour in glyph:
-                    contour.reverseContour()
             saveOTF(
                 font, ttfName,
                 self.thinGlyphOrder if "Thin" in ttfName else self.glyphOrder,