Merge pull request #82 from eiszfuchs/braille

[WIP] Support for Braille patterns
This commit is contained in:
Belleve Invis 2016-05-03 12:05:10 -05:00
commit ce994dbe63
3 changed files with 1819 additions and 3 deletions

View File

@ -565,6 +565,7 @@ export as build : define [buildFont para recursive recursiveCodes] : begin
$$include 'glyphs/symbol-math.ptl'
$$include 'glyphs/symbol-letter.ptl'
$$include 'glyphs/symbol-geometric.ptl'
$$include 'glyphs/symbol-braille.ptl'
$$include 'glyphs/symbol-other.ptl'
# Autobuilds
@ -572,4 +573,4 @@ export as build : define [buildFont para recursive recursiveCodes] : begin
$$include 'glyphs/autobuilds.ptl'
set font.glyfMap glyphs
return font
return font

1815
glyphs/symbol-braille.ptl Executable file

File diff suppressed because it is too large Load Diff

View File

@ -10,7 +10,7 @@ snapshot/assets :
PATELC = node ./node_modules/patel/bin/patel-c
SUPPORT_FILES_FROM_PTL = support/glyph.js support/spiroexpand.js support/spirokit.js parameters.js support/anchor.js support/point.js support/transform.js
SUPPORT_FILES = $(SUPPORT_FILES_FROM_PTL) generator.js emptyfont.toml parameters.toml support/fairify.js
GLYPH_SEGMENTS = glyphs/common-shapes.ptl glyphs/overmarks.ptl glyphs/letters-unified-basic.ptl glyphs/letters-unified-extended.ptl glyphs/numbers.ptl glyphs/symbol-punctuation.ptl glyphs/symbol-math.ptl glyphs/symbol-geometric.ptl glyphs/symbol-other.ptl glyphs/symbol-letter.ptl glyphs/autobuilds.ptl
GLYPH_SEGMENTS = glyphs/common-shapes.ptl glyphs/overmarks.ptl glyphs/letters-unified-basic.ptl glyphs/letters-unified-extended.ptl glyphs/numbers.ptl glyphs/symbol-punctuation.ptl glyphs/symbol-math.ptl glyphs/symbol-geometric.ptl glyphs/symbol-other.ptl glyphs/symbol-braille.ptl glyphs/symbol-letter.ptl glyphs/autobuilds.ptl
SCRIPTS = $(SUPPORT_FILES) buildglyphs.js
SCRIPTS_FROM_aki = $(SUPPORT_FILES_FROM_PTL) buildglyphs.js
@ -29,4 +29,4 @@ parameters.js : parameters.ptl
cleanscripts :
-@rm $(SCRIPTS_FROM_aki)
scripts : $(SCRIPTS)
scripts : $(SCRIPTS)