-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #817 from googlefonts/fix-drop-implied-on-curves
don't drop implied oncurves for interpolatable TTFs when building a VF
- Loading branch information
Showing
15 changed files
with
243 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>ascender</key> | ||
<integer>800</integer> | ||
<key>capHeight</key> | ||
<integer>700</integer> | ||
<key>descender</key> | ||
<integer>-200</integer> | ||
<key>familyName</key> | ||
<string>O Test Font</string> | ||
<key>italicAngle</key> | ||
<integer>0</integer> | ||
<key>styleMapFamilyName</key> | ||
<string>O Test Font</string> | ||
<key>styleMapStyleName</key> | ||
<string>bold</string> | ||
<key>styleName</key> | ||
<string>Bold</string> | ||
<key>unitsPerEm</key> | ||
<integer>1000</integer> | ||
<key>versionMajor</key> | ||
<integer>1</integer> | ||
<key>versionMinor</key> | ||
<integer>0</integer> | ||
<key>xHeight</key> | ||
<integer>500</integer> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>o</key> | ||
<string>o.glif</string> | ||
<key>space</key> | ||
<string>space.glif</string> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<glyph name="o" format="2"> | ||
<advance width="650"/> | ||
<unicode hex="006F"/> | ||
<outline> | ||
<contour> | ||
<point x="345" y="-15" type="curve" smooth="yes"/> | ||
<point x="510" y="-15"/> | ||
<point x="572" y="110"/> | ||
<point x="572" y="265" type="curve" smooth="yes"/> | ||
<point x="572" y="420"/> | ||
<point x="510" y="545"/> | ||
<point x="345" y="545" type="curve" smooth="yes"/> | ||
<point x="150" y="545"/> | ||
<point x="98" y="420"/> | ||
<point x="98" y="265" type="curve" smooth="yes"/> | ||
<point x="98" y="110"/> | ||
<point x="150" y="-15"/> | ||
</contour> | ||
<contour> | ||
<point x="334" y="107" type="curve" smooth="yes"/> | ||
<point x="237" y="107"/> | ||
<point x="211" y="187"/> | ||
<point x="211" y="262" type="curve" smooth="yes"/> | ||
<point x="211" y="336"/> | ||
<point x="237" y="426"/> | ||
<point x="334" y="426" type="curve" smooth="yes"/> | ||
<point x="461" y="426"/> | ||
<point x="467" y="336"/> | ||
<point x="467" y="262" type="curve" smooth="yes"/> | ||
<point x="467" y="187"/> | ||
<point x="461" y="107"/> | ||
</contour> | ||
</outline> | ||
</glyph> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<glyph name="space" format="2"> | ||
<advance width="600"/> | ||
<unicode hex="0020"/> | ||
<outline> | ||
</outline> | ||
</glyph> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<array> | ||
<array> | ||
<string>public.default</string> | ||
<string>glyphs</string> | ||
</array> | ||
</array> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>creator</key> | ||
<string>com.github.fonttools.ufoLib</string> | ||
<key>formatVersion</key> | ||
<integer>3</integer> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>ascender</key> | ||
<integer>800</integer> | ||
<key>capHeight</key> | ||
<integer>700</integer> | ||
<key>descender</key> | ||
<integer>-200</integer> | ||
<key>familyName</key> | ||
<string>O Test Font</string> | ||
<key>italicAngle</key> | ||
<integer>0</integer> | ||
<key>styleMapFamilyName</key> | ||
<string>O Test Font</string> | ||
<key>styleMapStyleName</key> | ||
<string>regular</string> | ||
<key>styleName</key> | ||
<string>Regular</string> | ||
<key>unitsPerEm</key> | ||
<integer>1000</integer> | ||
<key>versionMajor</key> | ||
<integer>1</integer> | ||
<key>versionMinor</key> | ||
<integer>0</integer> | ||
<key>xHeight</key> | ||
<integer>500</integer> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>o</key> | ||
<string>o.glif</string> | ||
<key>space</key> | ||
<string>space.glif</string> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<glyph name="o" format="2"> | ||
<advance width="600"/> | ||
<unicode hex="006F"/> | ||
<outline> | ||
<contour> | ||
<point x="305" y="-15" type="curve" smooth="yes"/> | ||
<point x="460" y="-15"/> | ||
<point x="522" y="110"/> | ||
<point x="522" y="265" type="curve" smooth="yes"/> | ||
<point x="522" y="420"/> | ||
<point x="460" y="545"/> | ||
<point x="305" y="545" type="curve" smooth="yes"/> | ||
<point x="120" y="545"/> | ||
<point x="68" y="420"/> | ||
<point x="68" y="265" type="curve" smooth="yes"/> | ||
<point x="68" y="110"/> | ||
<point x="120" y="-15"/> | ||
</contour> | ||
<contour> | ||
<point x="294" y="54" type="curve" smooth="yes"/> | ||
<point x="207" y="54"/> | ||
<point x="181" y="157"/> | ||
<point x="181" y="262" type="curve" smooth="yes"/> | ||
<point x="181" y="366"/> | ||
<point x="207" y="461"/> | ||
<point x="294" y="461" type="curve" smooth="yes"/> | ||
<point x="411" y="461"/> | ||
<point x="417" y="366"/> | ||
<point x="417" y="262" type="curve" smooth="yes"/> | ||
<point x="417" y="157"/> | ||
<point x="411" y="54"/> | ||
</contour> | ||
</outline> | ||
</glyph> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<glyph name="space" format="2"> | ||
<advance width="200"/> | ||
<unicode hex="0020"/> | ||
<outline> | ||
</outline> | ||
</glyph> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<array> | ||
<array> | ||
<string>public.default</string> | ||
<string>glyphs</string> | ||
</array> | ||
</array> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>creator</key> | ||
<string>com.github.fonttools.ufoLib</string> | ||
<key>formatVersion</key> | ||
<integer>3</integer> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<designspace format="5.0"> | ||
<axes> | ||
<axis tag="wght" name="Weight" minimum="400" maximum="700" default="400"/> | ||
</axes> | ||
<sources> | ||
<source filename="OTestFont-Regular.ufo" name="O Test Font Regular"> | ||
<location> | ||
<dimension name="Weight" xvalue="400"/> | ||
</location> | ||
</source> | ||
<source filename="OTestFont-Bold.ufo" name="O Test Font Bold"> | ||
<location> | ||
<dimension name="Weight" xvalue="700"/> | ||
</location> | ||
</source> | ||
</sources> | ||
</designspace> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters