add misc scripts and info for display
This commit is contained in:
parent
330860d24a
commit
4ee39ffbb4
2 changed files with 32 additions and 0 deletions
11
misc/glyphs-scripts/clear-vertex-names.py
Normal file
11
misc/glyphs-scripts/clear-vertex-names.py
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
#MenuTitle: Remove all vertex names
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
import GlyphsApp
|
||||||
|
|
||||||
|
Font = Glyphs.font
|
||||||
|
selectedLayers = Font.selectedLayers
|
||||||
|
|
||||||
|
for l in selectedLayers:
|
||||||
|
for p in l.paths:
|
||||||
|
for n in p.nodes:
|
||||||
|
n.name = None
|
||||||
21
misc/rmx-scaler-values-display-x-height-shrink.txt
Normal file
21
misc/rmx-scaler-values-display-x-height-shrink.txt
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"width" : [
|
||||||
|
95.7,
|
||||||
|
95.7,
|
||||||
|
100,
|
||||||
|
100,
|
||||||
|
95.7,
|
||||||
|
95.7
|
||||||
|
],
|
||||||
|
"height" : [
|
||||||
|
95.7,
|
||||||
|
95.7,
|
||||||
|
100,
|
||||||
|
100,
|
||||||
|
95.7,
|
||||||
|
95.7
|
||||||
|
],
|
||||||
|
"scaleSidebarings" : [
|
||||||
|
false
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in a new issue