correct /cyrpe

This commit is contained in:
be5invis 2016-10-20 22:35:10 +08:00
parent 279ba1715e
commit 9b56c90ff9
3 changed files with 9 additions and 4 deletions

View File

@ -375,10 +375,10 @@ export : define [apply] : begin
save 'Xi' 0x39E
define [PiShape] : params [top bottom [shrinkrate 0.05] _fine noserif] : glyph-construction
define [PiShape] : params [top bottom [shrinkrate 0.05] _fine noserif [endShrink 0]] : glyph-construction
local fine : fallback _fine STROKE
local shrink : if (!noserif && SLAB) 0 (shrinkrate * (RIGHTSB - SB))
local endexpand : shrink / 2
local endexpand : if (!noserif && SLAB) 0 (- endShrink * (RIGHTSB - SB) || shrink / 2)
include : HBarTop (SB - endexpand) (RIGHTSB + endexpand) top fine
include : VBarLeft (SB + shrink) bottom (top - fine / 2) fine
include : VBarRight (RIGHTSB - shrink) bottom (top - fine / 2) fine
@ -397,7 +397,7 @@ export : define [apply] : begin
sketch # cyrpe.upright
include markset.e
include : PiShape XH 0
include : PiShape XH 0 (shrinkrate -- 0.05) (endShrink -- 0.05)
save 'cyrpe.upright'
sketch # cyrpe.serbian

View File

@ -307,7 +307,7 @@ export : define [apply] : begin
save 'sum' 0x2211
sketch # product
include : PiShape parenTop parenBot 0 OPERATORSTROKE
include : PiShape parenTop parenBot (shrinkrate -- 0) (_fine -- OPERATORSTROKE)
save 'product' 0x220F
turned 'coproduct' 0x2210 'product' MIDDLE parenMid

View File

@ -25,6 +25,11 @@ for i in font:
glyph.unlinkRef()
glyph.removeOverlap()
for u in range(0x20, 0x7F):
font.selection.select(("unicode", None), u)
for g in font.selection:
font[g].unlinkRef()
font.selection.all()
font.simplify(0.05, ("smoothcurves", "choosehv"), 0.1)