correct /cyrpe
This commit is contained in:
parent
279ba1715e
commit
9b56c90ff9
|
@ -375,10 +375,10 @@ export : define [apply] : begin
|
||||||
save 'Xi' 0x39E
|
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 fine : fallback _fine STROKE
|
||||||
local shrink : if (!noserif && SLAB) 0 (shrinkrate * (RIGHTSB - SB))
|
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 : HBarTop (SB - endexpand) (RIGHTSB + endexpand) top fine
|
||||||
include : VBarLeft (SB + shrink) bottom (top - fine / 2) fine
|
include : VBarLeft (SB + shrink) bottom (top - fine / 2) fine
|
||||||
include : VBarRight (RIGHTSB - 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
|
sketch # cyrpe.upright
|
||||||
include markset.e
|
include markset.e
|
||||||
include : PiShape XH 0
|
include : PiShape XH 0 (shrinkrate -- 0.05) (endShrink -- 0.05)
|
||||||
save 'cyrpe.upright'
|
save 'cyrpe.upright'
|
||||||
|
|
||||||
sketch # cyrpe.serbian
|
sketch # cyrpe.serbian
|
||||||
|
|
|
@ -307,7 +307,7 @@ export : define [apply] : begin
|
||||||
save 'sum' 0x2211
|
save 'sum' 0x2211
|
||||||
|
|
||||||
sketch # product
|
sketch # product
|
||||||
include : PiShape parenTop parenBot 0 OPERATORSTROKE
|
include : PiShape parenTop parenBot (shrinkrate -- 0) (_fine -- OPERATORSTROKE)
|
||||||
save 'product' 0x220F
|
save 'product' 0x220F
|
||||||
turned 'coproduct' 0x2210 'product' MIDDLE parenMid
|
turned 'coproduct' 0x2210 'product' MIDDLE parenMid
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,11 @@ for i in font:
|
||||||
glyph.unlinkRef()
|
glyph.unlinkRef()
|
||||||
glyph.removeOverlap()
|
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.selection.all()
|
||||||
font.simplify(0.05, ("smoothcurves", "choosehv"), 0.1)
|
font.simplify(0.05, ("smoothcurves", "choosehv"), 0.1)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user