diff --git a/.github/workflows/build_fonts.yaml b/.github/workflows/build_fonts.yaml new file mode 100644 index 0000000..e17f482 --- /dev/null +++ b/.github/workflows/build_fonts.yaml @@ -0,0 +1,90 @@ +# Builds fonts either when a prerelease version tag (e.g. v1.2-foo) +# is created, or when source is changed. +# +# When a version tag is created, a pre-release is automatically created. +# +# Otherwise, when source changes without a tag being created, +# the build artifacts are uploaded to github and saved for 1 day. +# They can be found at https://github.com/rsms/inter/actions/runs/RUNID +name: Build fonts + +on: + push: + branches: [main] + paths: + - "src/**" + - "scripts/**" + - Makefile + - requirements.txt + tags: + - "v*" + pull_request: + branches: [main] + paths: + - "src/**" + - "scripts/**" + - Makefile + - requirements.txt + workflow_dispatch: + +defaults: + run: + shell: bash + +jobs: + build: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v4 + + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: '3.12' + + - name: Install utilities + run: sudo apt-get install -y zip + + - name: make init + run: make init + + - name: Define version (tag) + if: startsWith(github.ref, 'refs/tags/v') + run: | + VERSION=${{ github.ref }} + VERSION=${VERSION:11} # refs/tags/v1.2.3 => 1.2.3 + echo "NeoHanSans_version=$VERSION" >> $GITHUB_ENV + + - name: Define version (branch) + if: ${{ ! startsWith(github.ref, 'refs/tags/v') }} + run: | + python misc/scripts/get_ver.py + GITSHA=${{ github.sha }} + VERSION=$(cat version.txt) + echo "NeoHanSans_version=${VERSION}-${GITSHA:0:7}" >> $GITHUB_ENV + + - name: make build + run: | + ZIP=NeoHanSans-${{ env.NeoHanSans_version }}.zip + echo "NeoHanSans_zip=$ZIP" >> $GITHUB_ENV + make zip + mv NeoHanSans.zip "$ZIP" + + - name: Upload archive (unless tag) + if: ${{ ! startsWith(github.ref, 'refs/tags/v') }} + uses: actions/upload-artifact@v4 + with: + name: "${{ env.NeoHanSans_version }}" + path: ${{ env.NeoHanSans_zip }} + retention-days: 1 + + - name: Create release (if tag) + if: startsWith(github.ref, 'refs/tags/v') + uses: softprops/action-gh-release@v2 + with: + prerelease: true + name: "${{ env.NeoHanSans_version }}" + body: "This release was created automatically" + files: ${{ env.NeoHanSans_zip }} \ No newline at end of file diff --git a/.gitignore b/.gitignore index f3cba23..465027f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,6 @@ .DS_STORE -src/NeoHanSans-Variable(自动存储).glyphspackage \ No newline at end of file +src/NeoHanSans-Variable(自动存储).glyphspackage +fonts +fonts-temp +version.txt +*.stamp \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..512fe85 --- /dev/null +++ b/Makefile @@ -0,0 +1,44 @@ +help: + @echo "###" + @echo "# Build targets for Neo Han Sans SC" + @echo "###" + @echo + @echo " make build: Builds the fonts and places them in the fonts/ directory" + @echo " make zip: Zip all fonts into a zip" + @echo + +init: requirements.txt + pip install -Ur requirements.txt + touch init.stamp + +build: build.stamp + +# fontmake -m "fonts-temp/master-ufo/InterNumeric.designspace" -o variable --output-path "fonts/variable/InterNumeric[wght,RDNS].ttf" --filter DecomposeTransformedComponentsFilter --verbose DEBUG +# fontmake -m "fonts-temp/master-ufo/InterNumeric.designspace" -o variable-cff2 --output-path "fonts/variable/InterNumeric[wght,RDNS].otf" + + +build.stamp: init.stamp + fontmake -g "src/NeoHanSans-Variable.glyphspackage" -o variable --output-path "fonts/variable/NeoHanSansSC[wght].ttf" + python scripts/stat.py + touch build.stamp + +zip: build.stamp + cp -rf fonts NeoHanSansSC + zip -r NeoHanSans.zip NeoHanSansSC + rm -rf NeoHanSansSC + + +# fontbakery check-adobefonts "fonts/variable/InterNumeric[wght,RDNS].ttf" + +test: build.stamp + fontbakery check-universal "fonts/variable/NeoHanSansSC[wght].ttf" -x com.google.fonts/check/gpos_kerning_info -x com.google.fonts/check/tabular_kerning -x com.google.fonts/check/monospace + +test-google: build.stamp + fontbakery check-googlefonts "fonts/variable/NeoHanSansSC[wght].ttf" -x com.google.fonts/check/gpos_kerning_info -x com.google.fonts/check/tabular_kerning -x com.google.fonts/check/monospace + +clean: + rm -rf fonts + rm build.stamp + +update: + pip install -Ur requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..d4b3bb9 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,6 @@ +fontmake +gftools +fonttools +fontbakery +shaperglot +chws-tool \ No newline at end of file diff --git a/scripts/get_ver.py b/scripts/get_ver.py new file mode 100644 index 0000000..3a1382f --- /dev/null +++ b/scripts/get_ver.py @@ -0,0 +1,17 @@ +from glyphsLib import GSFont + +""" + Get font version from Glyphspackage source file, store it in verion.txt + No need to keep track of version in a seperate file. + Only used in GitHub Workflows to give artifacts a file name. +""" + +def get_font_version(glyphspackage_path): + font = GSFont(glyphspackage_path) + + return f"{font.versionMajor}.{font.versionMinor:03}" + +inter_numeric_src_path = "src/NeoHanSans-Variable.glyphspackage" + +with open("version.txt", "w") as version_file: + version_file.write(get_font_version(inter_numeric_src_path)) \ No newline at end of file diff --git a/scripts/stat.py b/scripts/stat.py new file mode 100644 index 0000000..f93bf51 --- /dev/null +++ b/scripts/stat.py @@ -0,0 +1,31 @@ +from fontTools.ttLib import TTFont +from fontTools.otlLib import builder + +""" + Add a STAT table to the Designspace document as a preprocessing before + using fontmake to compile the UFOs to the final binary font. +""" + +path = "fonts/variable/NeoHanSansSC[wght].ttf" +font = TTFont(path) + +axes = [ + dict( + tag="wght", + name="Weight", + values=[ + dict(value=100, name='Thin'), + dict(value=200, name='ExtraLight'), + dict(value=300, name='Light'), + dict(value=400, name='Regular', flags=0x2), + dict(value=500, name='Medium'), + dict(value=600, name='SemiBold'), + dict(value=700, name='Bold'), + dict(value=800, name='ExtraBold'), + dict(value=900, name='Black'), + ], + ) +] + +builder.buildStatTable(font, axes) +font.save(path) \ No newline at end of file diff --git a/src/NeoHanSans-Variable.glyphspackage/UIState.plist b/src/NeoHanSans-Variable.glyphspackage/UIState.plist deleted file mode 100644 index cfefa6f..0000000 --- a/src/NeoHanSans-Variable.glyphspackage/UIState.plist +++ /dev/null @@ -1,5 +0,0 @@ -{ -displayStrings = ( -"刳" -); -} diff --git a/src/NeoHanSans-Variable.glyphspackage/fontinfo.plist b/src/NeoHanSans-Variable.glyphspackage/fontinfo.plist index ef6c10a..70a6ba0 100644 --- a/src/NeoHanSans-Variable.glyphspackage/fontinfo.plist +++ b/src/NeoHanSans-Variable.glyphspackage/fontinfo.plist @@ -18,6 +18,21 @@ value = ( name = fsType; value = ( ); +}, +{ +name = panose; +value = ( +0, +1, +1, +1, +1, +1, +1, +1, +1, +1 +); } ); date = "2024-04-15 11:56:13 +0000"; @@ -29,34 +44,10 @@ axesValues = ( ); customParameters = ( { -name = typoAscender; -value = 880; -}, -{ -name = typoDescender; -value = -120; -}, -{ name = typoLineGap; value = 0; }, { -name = winAscent; -value = 1160; -}, -{ -name = winDescent; -value = 288; -}, -{ -name = hheaAscender; -value = 1160; -}, -{ -name = hheaDescender; -value = -288; -}, -{ name = strikeoutPosition; value = 325; }, @@ -67,6 +58,14 @@ value = 50; { name = underlinePosition; value = -150; +}, +{ +name = "CJK Guide"; +value = "90"; +}, +{ +name = "CJK Grid"; +value = "2"; } ); iconName = Light; @@ -97,34 +96,10 @@ axesValues = ( ); customParameters = ( { -name = typoAscender; -value = 880; -}, -{ -name = typoDescender; -value = -120; -}, -{ name = typoLineGap; value = 0; }, { -name = winAscent; -value = 1160; -}, -{ -name = winDescent; -value = 288; -}, -{ -name = hheaAscender; -value = 1160; -}, -{ -name = hheaDescender; -value = -288; -}, -{ name = strikeoutPosition; value = 325; }, @@ -135,6 +110,14 @@ value = 50; { name = underlinePosition; value = -150; +}, +{ +name = "CJK Guide"; +value = "90"; +}, +{ +name = "CJK Grid"; +value = "2"; } ); iconName = Bold; @@ -199,7 +182,7 @@ weightClass = 500; axesValues = ( 600 ); -name = Semibold; +name = SemiBold; weightClass = 600; }, { @@ -291,6 +274,6 @@ fontType = variable; previewRemoveOverlap = 0; }; unitsPerEm = 1000; -versionMajor = 0; -versionMinor = 1; +versionMajor = 1; +versionMinor = 0; } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/nbspace.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/nbspace.glyph new file mode 100644 index 0000000..9e16cd8 --- /dev/null +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/nbspace.glyph @@ -0,0 +1,16 @@ +{ +color = 8; +glyphname = nbspace; +layers = ( +{ +layerId = m01; +width = 600; +}, +{ +layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; +width = 200; +} +); +metricWidth = space; +unicode = 160; +} diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni4F_70.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni4F_70.glyph index 7972d05..d92b18b 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni4F_70.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni4F_70.glyph @@ -54,31 +54,31 @@ nodes = ( closed = 1; nodes = ( (397,563,l), -(397,-58,l), -(427,-58,l), +(397,-48,l), +(427,-48,l), (427,533,l), (837,533,l), -(837,-58,l), -(867,-58,l), +(837,-48,l), +(867,-48,l), (867,563,l) ); }, { closed = 1; nodes = ( -(413,270,l), -(413,241,l), -(850,241,l), -(850,270,l) +(413,272,l), +(413,243,l), +(850,243,l), +(850,272,l) ); }, { closed = 1; nodes = ( -(413,-28,l), -(413,-58,l), -(850,-58,l), -(850,-28,l) +(413,-18,l), +(413,-48,l), +(850,-48,l), +(850,-18,l) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni51F_D_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni51F_D_.glyph index d8e7e29..8730251 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni51F_D_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni51F_D_.glyph @@ -78,7 +78,7 @@ nodes = ( { closed = 1; nodes = ( -(487,579,l), +(487,589,l), (487,118,ls), (487,106,o), (483,102,o), @@ -93,7 +93,7 @@ nodes = ( (510,83,o), (517,94,o), (517,118,cs), -(517,579,l) +(517,589,l) ); }, { @@ -101,14 +101,14 @@ closed = 1; nodes = ( (760,781,l), (760,774,l), -(696,706,o), -(579,620,o), -(487,579,c), -(494,574,o), -(502,566,o), -(507,560,c), -(599,603,o), -(720,688,o), +(696,710,o), +(579,628,o), +(487,589,c), +(494,584,o), +(502,576,o), +(507,570,c), +(599,611,o), +(720,692,o), (795,768,c), (779,781,l), (767,781,l) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni52A_C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni52A_C_.glyph index 914eea7..13ac8dd 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni52A_C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni52A_C_.glyph @@ -48,12 +48,12 @@ closed = 1; nodes = ( (156,514,l), (156,484,l), -(351,484,l), -(351,171,l), +(331,484,l), +(331,171,l), (156,171,l), (156,141,l), -(381,141,l), -(381,514,l) +(361,141,l), +(361,514,l) ); }, { diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5364.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5364.glyph index 3b0c82d..eafd403 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5364.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5364.glyph @@ -48,29 +48,29 @@ nodes = ( { closed = 1; nodes = ( -(680,482,l), -(577,315,o), -(411,171,o), -(233,81,c), -(242,75,o), -(254,64,o), -(260,59,c), -(432,154,o), -(600,297,o), -(709,471,c) +(680,474,l), +(577,307,o), +(411,163,o), +(233,73,c), +(242,67,o), +(254,56,o), +(260,51,c), +(432,146,o), +(600,289,o), +(709,463,c) ); }, { closed = 1; nodes = ( -(276,421,l), -(446,323,o), -(638,173,o), -(728,66,c), -(752,90,l), -(660,197,o), -(468,344,o), -(297,442,c) +(276,413,l), +(446,315,o), +(638,165,o), +(728,58,c), +(752,82,l), +(660,189,o), +(468,336,o), +(297,434,c) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53A_E_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53A_E_.glyph index d1ab61b..4d2d2e8 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53A_E_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53A_E_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53AE; layers = ( { @@ -87,9 +88,7 @@ nodes = ( (273,66,o), (230,5,o), (183,-39,c), -(191,-44,o), -(203,-54,o), -(208,-59,c), +(208,-59,l), (252,-14,o), (299,54,o), (329,120,c) @@ -112,9 +111,7 @@ nodes = ( (133,336,o), (126,117,o), (47,-45,c), -(54,-48,o), -(67,-57,o), -(72,-63,c), +(72,-63,l), (152,103,o), (163,333,o), (163,493,cs), @@ -153,9 +150,7 @@ nodes = ( (642,220,o), (631,68,o), (540,-43,c), -(548,-47,o), -(558,-58,o), -(563,-65,c), +(563,-65,l), (658,52,o), (672,215,o), (672,338,cs), @@ -252,9 +247,7 @@ nodes = ( (263,55,o), (227,6,o), (189,-27,c), -(218,-42,o), -(268,-73,o), -(293,-93,c), +(293,-93,l), (332,-54,o), (376,9,o), (403,67,c) @@ -277,9 +270,7 @@ nodes = ( (88,352,o), (83,125,o), (11,-27,c), -(45,-39,o), -(105,-71,o), -(132,-92,c), +(132,-92,l), (209,74,o), (221,337,o), (221,510,cs), @@ -318,9 +309,7 @@ nodes = ( (626,251,o), (619,94,o), (538,-14,c), -(564,-29,o), -(616,-72,o), -(636,-96,c), +(636,-96,l), (732,27,o), (750,228,o), (750,368,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53B_6.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53B_6.glyph index 29997f1..5b4fbfd 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53B_6.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53B_6.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni53B6; layers = ( { +guides = ( +{ +angle = 183.961; +pos = (822,105); +} +); layerId = m01; shapes = ( { @@ -20,7 +27,7 @@ nodes = ( { closed = 1; nodes = ( -(130,59,o), +(126,68,o), (159,72,o), (159,72,c), (159,73,l), @@ -34,18 +41,14 @@ nodes = ( (165,140,o), (134,87,o), (116,82,c), -(121,73,o), -(128,57,o), -(130,48,c) +(126,57,l) ); }, { closed = 1; nodes = ( -(130,48,l), -(157,59,o), -(201,62,o), -(822,105,c), +(126,57,l), +(822,105,l), (822,112,o), (822,124,o), (823,132,c), @@ -58,6 +61,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 184.6355; +pos = (856,52); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -76,7 +85,7 @@ nodes = ( { closed = 1; nodes = ( -(104,4,o), +(98,21,o), (206,68,o), (206,68,c), (206,73,l), @@ -90,18 +99,14 @@ nodes = ( (101,182,o), (77,149,o), (36,136,c), -(60,91,o), -(95,6,o), -(104,-26,c) +(98,-9,l) ); }, { closed = 1; nodes = ( -(104,-26,l), -(172,-1,o), -(264,4,o), -(856,52,c), +(98,-9,l), +(856,52,l), (851,85,o), (844,151,o), (845,194,c), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53B_B_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53B_B_.glyph index b4ec8c0..261281d 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53B_B_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53B_B_.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni53BB; layers = ( { +guides = ( +{ +angle = 184.7157; +pos = (814,36); +} +); layerId = m01; shapes = ( { @@ -47,9 +54,7 @@ nodes = ( { closed = 1; nodes = ( -(151,-17,o), -(179,-8,o), -(179,-8,c), +(179,-8,l), (179,-7,l), (274,91,o), (370,229,o), @@ -61,18 +66,14 @@ nodes = ( (182,34,o), (158,7,o), (140,4,c), -(145,-4,o), -(150,-19,o), -(151,-27,c) +(148,-19,l) ); }, { closed = 1; nodes = ( -(151,-27,l), -(177,-16,o), -(220,-13,o), -(814,36,c), +(148,-19,l), +(814,36,l), (812,42,o), (809,54,o), (808,62,c), @@ -85,6 +86,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 184.4241; +pos = (792,-10); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -130,9 +137,7 @@ nodes = ( { closed = 1; nodes = ( -(136,-50,o), -(220,-4,o), -(220,-4,c), +(220,-4,l), (220,0,l), (315,85,o), (427,216,o), @@ -144,18 +149,14 @@ nodes = ( (135,94,o), (115,75,o), (87,68,c), -(104,28,o), -(128,-46,o), -(136,-75,c) +(132,-61,l) ); }, { closed = 1; nodes = ( -(136,-75,l), -(196,-53,o), -(275,-50,o), -(792,-10,c), +(132,-61,l), +(792,-10,l), (783,22,o), (769,83,o), (763,125,c), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53B_F_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53B_F_.glyph index 3232b25..226afcf 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53B_F_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53B_F_.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni53BF; layers = ( { +guides = ( +{ +angle = 182.7671; +pos = (815,6); +} +); layerId = m01; shapes = ( { @@ -60,7 +67,7 @@ nodes = ( { closed = 1; nodes = ( -(144,-25,o), +(141,-17,o), (174,-16,o), (174,-16,c), (174,-15,l), @@ -74,18 +81,14 @@ nodes = ( (174,18,o), (150,1,o), (133,-1,c), -(138,-11,o), -(142,-27,o), -(144,-35,c) +(141,-27,l) ); }, { closed = 1; nodes = ( -(144,-35,l), -(171,-25,o), -(215,-23,o), -(815,6,c), +(141,-27,l), +(815,6,l), (813,12,o), (810,25,o), (809,33,c), @@ -98,6 +101,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 183.2397; +pos = (793,-24); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -156,7 +165,7 @@ nodes = ( { closed = 1; nodes = ( -(138,-49,o), +(133,-35,o), (232,-9,o), (232,-9,c), (232,-6,l), @@ -170,18 +179,14 @@ nodes = ( (138,76,o), (117,64,o), (93,59,c), -(108,21,o), -(130,-46,o), -(138,-75,c) +(133,-61,l) ); }, { closed = 1; nodes = ( -(138,-75,l), -(191,-56,o), -(263,-54,o), -(793,-24,c), +(133,-61,l), +(793,-24,l), (786,3,o), (774,53,o), (769,88,c), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_1.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_1.glyph index 92a3986..52296cc 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_1.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_1.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni53C1; layers = ( { +guides = ( +{ +angle = 182.8677; +pos = (792,647); +} +); layerId = m01; shapes = ( { @@ -47,9 +54,7 @@ nodes = ( (357,453,o), (215,328,o), (43,254,c), -(50,248,o), -(62,236,o), -(67,230,c), +(67,230,l), (235,311,o), (381,435,o), (460,615,c) @@ -62,9 +67,7 @@ nodes = ( (683,383,o), (821,286,o), (936,239,c), -(942,248,o), -(951,259,o), -(959,265,c), +(959,265,l), (842,306,o), (707,399,o), (638,496,c) @@ -86,9 +89,7 @@ nodes = ( { closed = 1; nodes = ( -(187,618,o), -(218,626,o), -(218,626,c), +(218,626,l), (218,627,l), (302,671,o), (389,735,o), @@ -100,18 +101,14 @@ nodes = ( (218,654,o), (194,643,o), (178,642,c), -(182,633,o), -(186,616,o), -(187,608,c) +(185,617,l) ); }, { closed = 1; nodes = ( -(187,608,l), -(212,617,o), -(253,620,o), -(792,647,c), +(185,617,l), +(792,647,l), (789,653,o), (785,666,o), (784,674,c), @@ -124,6 +121,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 182.1211; +pos = (800,601); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -169,9 +172,7 @@ nodes = ( (299,481,o), (176,366,o), (12,304,c), -(44,277,o), -(99,218,o), -(121,187,c), +(121,187,l), (291,268,o), (430,407,o), (506,600,c) @@ -184,9 +185,7 @@ nodes = ( (643,345,o), (762,249,o), (892,198,c), -(913,234,o), -(957,289,o), -(989,317,c), +(989,317,l), (867,354,o), (751,425,o), (692,503,c) @@ -208,9 +207,7 @@ nodes = ( { closed = 1; nodes = ( -(166,589,o), -(246,625,o), -(246,625,c), +(246,625,l), (246,628,l), (343,669,o), (450,734,o), @@ -222,18 +219,14 @@ nodes = ( (172,712,o), (150,701,o), (124,696,c), -(138,659,o), -(159,592,o), -(166,565,c) +(162,578,l) ); }, { closed = 1; nodes = ( -(166,565,l), -(217,582,o), -(287,582,o), -(800,601,c), +(162,578,l), +(800,601,l), (793,628,o), (783,678,o), (779,713,c), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_2.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_2.glyph index 02c1e1e..026d370 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_2.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_2.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni53C2; layers = ( { +guides = ( +{ +angle = 182.8677; +pos = (792,647); +} +); layerId = m01; shapes = ( { @@ -33,9 +40,7 @@ nodes = ( (492,348,o), (368,292,o), (263,260,c), -(271,254,o), -(279,244,o), -(285,237,c), +(285,237,l), (390,272,o), (515,331,o), (589,395,c) @@ -48,9 +53,7 @@ nodes = ( (566,214,o), (399,150,o), (251,116,c), -(258,110,o), -(266,99,o), -(271,92,c), +(271,92,l), (421,129,o), (588,195,o), (684,275,c) @@ -63,9 +66,7 @@ nodes = ( (678,59,o), (449,-15,o), (196,-47,c), -(202,-54,o), -(208,-65,o), -(212,-73,c), +(212,-73,l), (466,-38,o), (702,39,o), (817,159,c) @@ -78,9 +79,7 @@ nodes = ( (375,450,o), (231,321,o), (55,243,c), -(63,237,o), -(75,225,o), -(79,220,c), +(79,220,l), (252,303,o), (399,433,o), (477,620,c) @@ -93,9 +92,7 @@ nodes = ( (673,382,o), (815,280,o), (933,231,c), -(938,239,o), -(948,250,o), -(955,256,c), +(955,256,l), (835,300,o), (697,398,o), (626,500,c) @@ -104,9 +101,7 @@ nodes = ( { closed = 1; nodes = ( -(187,618,o), -(218,626,o), -(218,626,c), +(218,626,l), (218,627,l), (302,671,o), (389,735,o), @@ -118,18 +113,14 @@ nodes = ( (218,654,o), (194,643,o), (178,642,c), -(182,633,o), -(186,616,o), -(187,608,c) +(185,617,l) ); }, { closed = 1; nodes = ( -(187,608,l), -(212,617,o), -(253,620,o), -(792,647,c), +(185,617,l), +(792,647,l), (789,653,o), (785,666,o), (784,674,c), @@ -142,6 +133,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 182.1211; +pos = (800,601); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -173,9 +170,7 @@ nodes = ( (461,361,o), (330,333,o), (241,321,c), -(274,293,o), -(309,251,o), -(329,221,c), +(329,221,l), (427,240,o), (554,277,o), (643,325,c) @@ -188,9 +183,7 @@ nodes = ( (518,228,o), (354,192,o), (219,178,c), -(249,147,o), -(281,101,o), -(298,67,c), +(298,67,l), (451,94,o), (613,141,o), (720,219,c) @@ -203,9 +196,7 @@ nodes = ( (603,84,o), (379,45,o), (146,31,c), -(173,-3,o), -(201,-57,o), -(214,-97,c), +(214,-97,l), (477,-68,o), (704,-16,o), (849,120,c) @@ -218,9 +209,7 @@ nodes = ( (304,468,o), (183,338,o), (14,268,c), -(46,241,o), -(101,183,o), -(123,153,c), +(123,153,l), (297,243,o), (434,398,o), (508,607,c) @@ -233,9 +222,7 @@ nodes = ( (641,328,o), (756,214,o), (887,150,c), -(908,186,o), -(952,240,o), -(984,268,c), +(984,268,l), (862,315,o), (749,407,o), (692,503,c) @@ -244,9 +231,7 @@ nodes = ( { closed = 1; nodes = ( -(166,589,o), -(246,624,o), -(246,624,c), +(246,624,l), (246,627,l), (342,668,o), (449,733,o), @@ -258,18 +243,14 @@ nodes = ( (173,711,o), (150,699,o), (124,695,c), -(139,658,o), -(159,592,o), -(166,565,c) +(161,577,l) ); }, { closed = 1; nodes = ( -(166,565,l), -(217,582,o), -(287,582,o), -(800,601,c), +(161,577,l), +(800,601,l), (793,628,o), (783,678,o), (779,713,c), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_8.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_8.glyph index 465a0de..049ee87 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_8.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_8.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53C8; layers = ( { @@ -11,9 +12,7 @@ nodes = ( (310,332,o), (548,46,o), (940,-62,c), -(945,-53,o), -(953,-43,o), -(959,-37,c), +(959,-37,l), (569,65,o), (330,351,o), (210,731,c) @@ -36,13 +35,11 @@ nodes = ( (693,316,o), (381,71,o), (45,-41,c), -(52,-46,o), -(61,-58,o), -(64,-65,c), +(64,-65,l), (400,53,o), (715,297,o), (837,737,c), -(820,746,l), +(824,744,l), (814,744,l) ); } @@ -56,16 +53,14 @@ shapes = ( { closed = 1; nodes = ( -(157,650,l), -(279,269,o), -(480,22,o), +(144,686,l), +(268,286,o), +(473,27,o), (884,-82,c), -(905,-43,o), -(950,23,o), -(983,54,c), -(605,139,o), -(394,366,o), -(300,689,c) +(983,54,l), +(598,144,o), +(383,384,o), +(287,725,c) ); }, { @@ -85,13 +80,11 @@ nodes = ( (654,353,o), (399,150,o), (27,60,c), -(59,29,o), -(104,-41,o), -(119,-79,c), +(119,-79,l), (505,28,o), (788,282,o), (892,768,c), -(789,814,l), +(813,807,l), (765,807,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_9.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_9.glyph index 2ab6e52..c258d46 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_9.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_9.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53C9; layers = ( { @@ -24,9 +25,7 @@ nodes = ( (303,322,o), (540,50,o), (935,-51,c), -(940,-43,o), -(948,-32,o), -(954,-26,c), +(954,-26,l), (561,69,o), (324,340,o), (205,714,c) @@ -44,19 +43,17 @@ nodes = ( { closed = 1; nodes = ( -(809,722,l), +(809,724,l), (809,717,l), (691,301,o), (374,59,o), (34,-51,c), -(40,-56,o), -(49,-66,o), -(53,-73,c), +(53,-73,l), (392,41,o), (713,281,o), (838,715,c), (821,724,l), -(816,722,l) +(816,724,l) ); } ); @@ -82,16 +79,14 @@ nodes = ( { closed = 1; nodes = ( -(143,621,l), -(268,248,o), -(473,16,o), +(132,654,l), +(259,263,o), +(467,20,o), (887,-77,c), -(907,-38,o), -(950,28,o), -(983,59,c), -(594,134,o), -(379,345,o), -(283,661,c) +(983,59,l), +(588,138,o), +(370,361,o), +(272,694,c) ); }, { @@ -111,13 +106,11 @@ nodes = ( (662,335,o), (398,135,o), (23,47,c), -(54,17,o), -(98,-54,o), -(113,-92,c), +(113,-92,l), (501,13,o), (794,261,o), (904,737,c), -(801,785,l), +(831,778,l), (777,778,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_A_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_A_.glyph index 000397f..f52ea4f 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_A_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_A_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53CA; layers = ( { @@ -11,9 +12,7 @@ nodes = ( (381,308,o), (566,34,o), (931,-64,c), -(936,-55,o), -(944,-45,o), -(951,-38,c), +(951,-38,l), (588,53,o), (403,326,o), (315,706,c) @@ -36,13 +35,11 @@ nodes = ( (788,188,o), (534,20,o), (272,-40,c), -(278,-46,o), -(285,-59,o), -(288,-66,c), +(288,-66,l), (557,1,o), (813,170,o), (901,519,c), -(883,527,l), +(888,525,l), (877,525,l) ); }, @@ -63,9 +60,7 @@ nodes = ( (288,449,o), (277,201,o), (46,-27,c), -(53,-32,o), -(64,-42,o), -(68,-49,c), +(68,-49,l), (303,185,o), (318,439,o), (318,644,cs), @@ -76,13 +71,9 @@ nodes = ( closed = 1; nodes = ( (666,773,l), -(646,687,o), -(615,568,o), -(590,496,c), +(590,496,l), (619,496,l), -(641,566,o), -(672,684,o), -(695,773,c) +(695,773,l) ); } ); @@ -99,9 +90,7 @@ nodes = ( (342,253,o), (503,12,o), (885,-86,c), -(906,-45,o), -(951,21,o), -(984,52,c), +(984,52,l), (622,128,o), (450,342,o), (373,658,c) @@ -124,13 +113,11 @@ nodes = ( (712,279,o), (536,103,o), (285,32,c), -(315,1,o), -(352,-58,o), -(370,-97,c), +(370,-97,l), (657,4,o), (848,190,o), (922,538,c), -(821,578,l), +(855,572,l), (794,572,l) ); }, @@ -151,9 +138,7 @@ nodes = ( (232,449,o), (209,192,o), (19,37,c), -(51,9,o), -(104,-53,o), -(126,-92,c), +(126,-92,l), (355,104,o), (385,410,o), (385,604,cs), @@ -164,13 +149,9 @@ nodes = ( closed = 1; nodes = ( (580,807,l), -(560,685,o), -(526,535,o), -(496,435,c), +(496,435,l), (658,435,l), -(681,531,o), -(709,680,o), -(730,807,c) +(730,807,l) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_B_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_B_.glyph index c22a8b8..56c47bb 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_B_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_B_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53CB; layers = ( { @@ -11,9 +12,7 @@ nodes = ( (411,162,o), (622,-10,o), (935,-72,c), -(939,-64,o), -(947,-54,o), -(954,-47,c), +(954,-47,l), (639,11,o), (431,180,o), (338,445,c) @@ -27,13 +26,11 @@ nodes = ( (687,160,o), (450,13,o), (204,-46,c), -(211,-52,o), -(219,-64,o), -(222,-72,c), +(222,-72,l), (475,-7,o), (713,141,o), (802,446,c), -(782,457,l), +(786,455,l), (776,455,l) ); }, @@ -62,9 +59,7 @@ nodes = ( (357,771,o), (337,202,o), (47,-24,c), -(55,-28,o), -(68,-36,o), -(74,-41,c), +(74,-41,l), (366,194,o), (384,759,o), (390,832,c) @@ -84,9 +79,7 @@ nodes = ( (419,128,o), (583,-25,o), (872,-90,c), -(892,-50,o), -(934,13,o), -(966,44,c), +(966,44,l), (693,91,o), (523,219,o), (441,413,c) @@ -100,13 +93,11 @@ nodes = ( (656,241,o), (485,91,o), (257,30,c), -(286,0,o), -(321,-56,o), -(339,-93,c), +(339,-93,l), (601,-7,o), (788,154,o), (866,452,c), -(766,494,l), +(793,488,l), (740,488,l) ); }, @@ -135,9 +126,7 @@ nodes = ( (293,715,o), (302,284,o), (17,48,c), -(67,19,o), -(112,-18,o), -(142,-57,c), +(142,-57,l), (429,213,o), (444,674,o), (452,855,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_C_.glyph index 8129530..f2a0d25 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_C_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53CC; layers = ( { @@ -21,13 +22,11 @@ nodes = ( (814,329,o), (619,69,o), (406,-47,c), -(414,-53,o), -(424,-64,o), -(427,-70,c), +(427,-70,l), (645,54,o), (841,313,o), (905,745,c), -(885,752,l), +(893,750,l), (879,750,l) ); }, @@ -38,9 +37,7 @@ nodes = ( (594,351,o), (702,62,o), (936,-74,c), -(942,-65,o), -(952,-56,o), -(960,-49,c), +(960,-49,l), (728,75,o), (620,365,o), (569,731,c) @@ -63,13 +60,11 @@ nodes = ( (366,347,o), (219,79,o), (49,-47,c), -(57,-52,o), -(67,-63,o), -(72,-69,c), +(72,-69,l), (245,66,o), (393,332,o), (440,746,c), -(422,752,l), +(429,750,l), (416,750,l) ); }, @@ -110,29 +105,25 @@ nodes = ( (768,395,o), (636,141,o), (395,36,c), -(427,7,o), -(469,-53,o), -(490,-92,c), +(490,-92,l), (765,54,o), (905,314,o), (942,763,c), -(847,788,l), +(876,782,l), (823,783,l) ); }, { closed = 1; nodes = ( -(484,634,l), -(539,299,o), -(634,44,o), +(496,668,l), +(537,302,o), +(634,41,o), (863,-95,c), -(885,-56,o), -(931,2,o), -(965,30,c), -(757,140,o), -(661,377,o), -(618,655,c) +(965,30,l), +(756,138,o), +(659,383,o), +(630,689,c) ); }, { @@ -152,13 +143,11 @@ nodes = ( (297,437,o), (194,152,o), (13,23,c), -(48,-3,o), -(94,-58,o), -(117,-95,c), +(117,-95,l), (327,77,o), (434,361,o), (468,762,c), -(374,788,l), +(391,784,l), (349,783,l) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_D_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_D_.glyph index 2551f39..3597cb2 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_D_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53C_D_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53CD; layers = ( { @@ -21,9 +22,7 @@ nodes = ( (192,320,o), (181,103,o), (72,-57,c), -(80,-61,o), -(91,-68,o), -(96,-75,c), +(96,-75,l), (207,88,o), (222,316,o), (222,479,cs), @@ -38,13 +37,11 @@ nodes = ( (695,202,o), (444,28,o), (201,-39,c), -(207,-46,o), -(215,-58,o), -(219,-66,c), +(219,-66,l), (469,8,o), (721,183,o), (816,502,c), -(796,512,l), +(800,510,l), (789,510,l) ); }, @@ -55,9 +52,7 @@ nodes = ( (399,199,o), (597,14,o), (901,-62,c), -(905,-53,o), -(914,-41,o), -(920,-35,c), +(920,-35,l), (617,34,o), (424,219,o), (334,502,c) @@ -102,9 +97,7 @@ nodes = ( (134,350,o), (127,134,o), (29,-10,c), -(64,-25,o), -(130,-70,o), -(157,-96,c), +(157,-96,l), (266,63,o), (284,329,o), (284,501,cs), @@ -119,13 +112,11 @@ nodes = ( (696,276,o), (506,109,o), (234,43,c), -(263,11,o), -(299,-49,o), -(316,-89,c), +(316,-89,l), (623,5,o), (829,185,o), (909,541,c), -(808,581,l), +(813,575,l), (782,575,l) ); }, @@ -136,9 +127,7 @@ nodes = ( (412,173,o), (571,-5,o), (872,-84,c), -(892,-46,o), -(932,14,o), -(964,43,c), +(964,43,l), (684,104,o), (519,260,o), (443,487,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_1.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_1.glyph index a6f4721..6950ce8 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_1.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_1.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53D1; layers = ( { @@ -11,9 +12,7 @@ nodes = ( (457,157,o), (660,-10,o), (931,-74,c), -(935,-66,o), -(943,-56,o), -(950,-50,c), +(950,-50,l), (678,10,o), (478,176,o), (385,410,c) @@ -27,13 +26,11 @@ nodes = ( (692,161,o), (466,12,o), (243,-50,c), -(249,-56,o), -(257,-66,o), -(260,-73,c), +(260,-73,l), (488,-6,o), (716,143,o), (805,419,c), -(786,428,l), +(790,426,l), (780,426,l) ); }, @@ -53,9 +50,7 @@ nodes = ( (422,476,o), (302,205,o), (41,30,c), -(49,25,o), -(60,17,o), -(65,11,c), +(65,11,l), (331,190,o), (448,465,o), (499,826,c) @@ -77,7 +72,7 @@ nodes = ( { closed = 1; nodes = ( -(155,557,o), +(151,562,o), (185,568,o), (185,568,c), (185,569,l), @@ -88,21 +83,17 @@ nodes = ( (224,720,o), (185,637,o), (175,617,cs), -(164,596,o), -(156,581,o), -(144,579,c), -(148,572,o), -(153,553,o), -(155,546,c) +(166,600,o), +(154,591,o), +(140,590,c), +(151,557,l) ); }, { closed = 1; nodes = ( -(155,546,l), -(166,553,o), -(190,557,o), -(263,557,cs), +(151,557,l), +(263,557,l), (916,557,l), (916,587,l), (185,587,l), @@ -123,9 +114,7 @@ nodes = ( (424,112,o), (593,-36,o), (896,-96,c), -(916,-56,o), -(956,6,o), -(987,37,c), +(987,37,l), (701,80,o), (525,202,o), (441,398,c) @@ -139,13 +128,11 @@ nodes = ( (682,209,o), (486,82,o), (235,33,c), -(263,1,o), -(296,-57,o), -(312,-96,c), +(312,-96,l), (598,-24,o), (813,116,o), (906,404,c), -(804,451,l), +(823,445,l), (777,445,l) ); }, @@ -165,9 +152,7 @@ nodes = ( (391,506,o), (286,236,o), (13,100,c), -(48,73,o), -(100,13,o), -(119,-19,c), +(119,-19,l), (428,144,o), (543,430,o), (596,837,c) @@ -189,7 +174,7 @@ nodes = ( { closed = 1; nodes = ( -(128,517,o), +(119,543,o), (235,564,o), (235,564,c), (235,566,l), @@ -203,18 +188,14 @@ nodes = ( (113,637,o), (97,623,o), (81,617,c), -(96,582,o), -(119,518,o), -(128,488,c) +(119,514,l) ); }, { closed = 1; nodes = ( -(128,488,l), -(136,505,o), -(184,514,o), -(232,514,cs), +(119,514,l), +(232,514,l), (953,514,l), (954,652,l), (210,652,l), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_4.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_4.glyph index 1fb7304..87831b7 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_4.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_4.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53D4; layers = ( { @@ -39,13 +40,11 @@ nodes = ( (824,321,o), (644,64,o), (437,-51,c), -(445,-57,o), -(454,-66,o), -(458,-74,c), +(458,-74,l), (670,50,o), (851,305,o), (907,746,c), -(888,752,l), +(894,750,l), (882,750,l) ); }, @@ -56,9 +55,7 @@ nodes = ( (615,357,o), (714,67,o), (936,-70,c), -(942,-63,o), -(952,-52,o), -(960,-46,c), +(960,-46,l), (739,80,o), (640,370,o), (593,734,c) @@ -84,9 +81,7 @@ nodes = ( (250,-30,o), (203,-30,o), (144,-29,c), -(148,-37,o), -(154,-49,o), -(156,-56,c), +(156,-56,l), (229,-56,o), (266,-56,o), (285,-51,cs), @@ -103,9 +98,7 @@ nodes = ( (138,237,o), (97,144,o), (47,80,c), -(55,75,o), -(68,66,o), -(73,62,c), +(73,62,l), (121,129,o), (165,227,o), (193,325,c) @@ -166,29 +159,25 @@ nodes = ( (782,424,o), (659,143,o), (454,19,c), -(485,-6,o), -(527,-58,o), -(548,-93,c), +(548,-93,l), (783,70,o), (910,352,o), (949,779,c), -(860,804,l), +(885,799,l), (837,799,l) ); }, { closed = 1; nodes = ( -(542,646,l), -(596,322,o), -(685,56,o), +(536,680,l), +(591,341,o), +(681,63,o), (888,-94,c), -(910,-56,o), -(957,-2,o), -(989,25,c), -(802,145,o), -(708,393,o), -(664,666,c) +(989,25,l), +(798,151,o), +(702,413,o), +(658,700,c) ); }, { @@ -211,9 +200,7 @@ nodes = ( (192,41,o), (149,41,o), (115,43,c), -(132,7,o), -(152,-50,o), -(157,-88,c), +(157,-88,l), (222,-88,o), (272,-86,o), (312,-65,cs), @@ -230,9 +217,7 @@ nodes = ( (62,270,o), (39,172,o), (9,111,c), -(41,100,o), -(100,77,o), -(128,60,c), +(128,60,l), (157,127,o), (186,234,o), (200,333,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_6.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_6.glyph index f694853..fb211a3 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_6.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_6.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53D6; layers = ( { @@ -21,13 +22,11 @@ nodes = ( (828,332,o), (660,73,o), (482,-46,c), -(489,-52,o), -(499,-62,o), -(504,-69,c), +(504,-69,l), (686,60,o), (855,317,o), (913,706,c), -(894,712,l), +(900,710,l), (888,710,l) ); }, @@ -38,9 +37,7 @@ nodes = ( (616,339,o), (718,67,o), (931,-62,c), -(937,-54,o), -(947,-44,o), -(955,-38,c), +(955,-38,l), (743,81,o), (641,353,o), (593,694,c) @@ -128,13 +125,11 @@ nodes = ( (788,389,o), (672,126,o), (475,12,c), -(506,-13,o), -(545,-62,o), -(566,-97,c), +(566,-97,l), (796,56,o), (918,316,o), (955,736,c), -(865,759,l), +(886,755,l), (841,755,l) ); }, @@ -145,9 +140,7 @@ nodes = ( (592,309,o), (686,55,o), (889,-89,c), -(911,-53,o), -(955,-1,o), -(986,24,c), +(986,24,l), (801,140,o), (705,380,o), (661,649,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_7.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_7.glyph index 94146ed..50affb3 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_7.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_7.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53D7; layers = ( { @@ -33,9 +34,7 @@ nodes = ( (659,795,o), (344,767,o), (92,753,c), -(95,745,o), -(99,734,o), -(100,726,c), +(100,726,l), (355,739,o), (666,768,o), (842,808,c) @@ -88,13 +87,11 @@ nodes = ( (643,125,o), (356,4,o), (64,-47,c), -(70,-54,o), -(77,-66,o), -(81,-74,c), +(81,-74,l), (376,-17,o), (668,103,o), (795,349,c), -(776,364,l), +(781,362,l), (769,362,l) ); }, @@ -105,9 +102,7 @@ nodes = ( (353,114,o), (611,-25,o), (920,-75,c), -(924,-66,o), -(932,-55,o), -(938,-48,c), +(938,-48,l), (627,-3,o), (374,134,o), (257,350,c) @@ -149,9 +144,7 @@ nodes = ( (632,826,o), (334,803,o), (66,796,c), -(79,765,o), -(96,709,o), -(98,673,c), +(98,673,l), (367,679,o), (680,700,o), (920,744,c) @@ -204,29 +197,25 @@ nodes = ( (588,156,o), (345,74,o), (32,48,c), -(62,18,o), -(103,-46,o), -(117,-82,c), +(117,-82,l), (438,-41,o), (707,68,o), (824,334,c), -(725,392,l), +(739,387,l), (700,387,l) ); }, { closed = 1; nodes = ( -(218,235,l), -(362,52,o), -(576,-44,o), +(228,272,l), +(351,55,o), +(576,-43,o), (874,-79,c), -(893,-39,o), -(932,25,o), -(963,58,c), -(677,80,o), -(455,153,o), -(345,286,c) +(963,58,l), +(674,80,o), +(441,157,o), +(355,323,c) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_8.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_8.glyph index e4920e3..c7ed5f7 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_8.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_8.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53D8; layers = ( { @@ -29,9 +30,7 @@ nodes = ( (225,554,o), (173,474,o), (115,420,c), -(123,416,o), -(135,406,o), -(140,402,c), +(140,402,l), (195,458,o), (251,542,o), (285,627,c) @@ -79,9 +78,7 @@ nodes = ( (346,98,o), (617,-27,o), (929,-72,c), -(933,-64,o), -(940,-53,o), -(947,-46,c), +(947,-46,l), (631,-6,o), (366,119,o), (244,324,c) @@ -104,13 +101,11 @@ nodes = ( (641,115,o), (351,2,o), (65,-46,c), -(71,-53,o), -(79,-65,o), -(83,-73,c), +(83,-73,l), (372,-19,o), (665,93,o), (796,318,c), -(777,332,l), +(780,330,l), (770,330,l) ); } @@ -146,9 +141,7 @@ nodes = ( (144,563,o), (97,504,o), (45,466,c), -(76,449,o), -(131,413,o), -(157,390,c), +(157,390,l), (209,437,o), (266,512,o), (299,586,c) @@ -196,9 +189,7 @@ nodes = ( (334,39,o), (562,-63,o), (887,-97,c), -(905,-60,o), -(940,-1,o), -(969,30,c), +(969,30,l), (658,54,o), (421,135,o), (308,287,c) @@ -221,13 +212,11 @@ nodes = ( (622,140,o), (351,57,o), (31,31,c), -(55,1,o), -(88,-61,o), -(99,-97,c), +(99,-97,l), (429,-56,o), (728,50,o), (865,296,c), -(772,358,l), +(783,353,l), (749,353,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_9.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_9.glyph index e2b1dba..ee0d9d7 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_9.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_9.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53D9; layers = ( { @@ -21,13 +22,11 @@ nodes = ( (838,319,o), (666,66,o), (467,-47,c), -(474,-53,o), -(483,-64,o), -(487,-71,c), +(487,-71,l), (693,52,o), (866,303,o), (919,733,c), -(900,739,l), +(906,737,l), (894,737,l) ); }, @@ -38,9 +37,7 @@ nodes = ( (602,350,o), (701,68,o), (916,-66,c), -(921,-59,o), -(931,-49,o), -(939,-43,c), +(939,-43,l), (726,81,o), (627,364,o), (581,718,c) @@ -70,9 +67,7 @@ nodes = ( (256,-40,o), (217,-40,o), (167,-39,c), -(172,-48,o), -(177,-61,o), -(179,-69,c), +(179,-69,l), (235,-69,o), (271,-69,o), (289,-64,cs), @@ -107,9 +102,7 @@ nodes = ( (134,181,o), (98,95,o), (52,35,c), -(60,32,o), -(73,22,o), -(78,18,c), +(78,18,l), (123,80,o), (162,170,o), (187,261,c) @@ -122,9 +115,7 @@ nodes = ( (253,711,o), (145,607,o), (39,540,c), -(46,534,o), -(58,523,o), -(62,517,c), +(62,517,l), (168,588,o), (278,696,o), (345,815,c) @@ -167,29 +158,25 @@ nodes = ( (795,372,o), (680,113,o), (457,8,c), -(487,-19,o), -(526,-73,o), -(547,-109,c), +(547,-109,l), (806,37,o), (928,296,o), (956,761,c), -(866,780,l), +(877,776,l), (842,776,l) ); }, { closed = 1; nodes = ( -(526,624,l), +(537,652,l), (583,301,o), (678,48,o), (891,-94,c), -(913,-56,o), -(958,-2,o), -(991,25,c), +(991,25,l), (798,138,o), (701,376,o), -(657,646,c) +(668,674,c) ); }, { @@ -216,9 +203,7 @@ nodes = ( (201,31,o), (163,31,o), (130,32,c), -(147,-3,o), -(165,-57,o), -(170,-94,c), +(170,-94,l), (233,-94,o), (280,-91,o), (317,-70,cs), @@ -253,9 +238,7 @@ nodes = ( (80,194,o), (52,116,o), (21,66,c), -(51,53,o), -(103,28,o), -(129,11,c), +(129,11,l), (159,66,o), (194,155,o), (214,234,c) @@ -268,9 +251,7 @@ nodes = ( (206,766,o), (106,672,o), (13,614,c), -(32,578,o), -(62,497,o), -(70,464,c), +(70,464,l), (189,547,o), (311,684,o), (385,815,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_B_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_B_.glyph index b277287..2925396 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_B_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_B_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53DB; layers = ( { @@ -21,9 +22,7 @@ nodes = ( (509,304,o), (493,99,o), (351,-49,c), -(359,-54,o), -(369,-65,o), -(373,-71,c), +(373,-71,l), (519,82,o), (538,299,o), (538,463,cs), @@ -38,13 +37,11 @@ nodes = ( (816,276,o), (664,63,o), (501,-50,c), -(509,-55,o), -(520,-65,o), -(525,-73,c), +(525,-73,l), (687,46,o), (841,260,o), (908,545,c), -(889,555,l), +(889,553,l), (882,553,l) ); }, @@ -55,9 +52,7 @@ nodes = ( (609,327,o), (728,61,o), (935,-70,c), -(940,-63,o), -(950,-53,o), -(957,-48,c), +(957,-48,l), (749,79,o), (631,343,o), (583,546,c) @@ -95,9 +90,7 @@ nodes = ( (238,247,o), (221,74,o), (74,-58,c), -(83,-62,o), -(93,-70,o), -(98,-76,c), +(98,-76,l), (248,60,o), (268,236,o), (268,421,cs), @@ -163,9 +156,7 @@ nodes = ( (507,395,o), (497,161,o), (371,5,c), -(399,-12,o), -(457,-65,o), -(478,-93,c), +(478,-93,l), (620,80,o), (646,375,o), (646,554,cs), @@ -180,13 +171,11 @@ nodes = ( (797,310,o), (691,111,o), (539,6,c), -(571,-13,o), -(624,-63,o), -(647,-92,c), +(647,-92,l), (802,26,o), (922,257,o), (972,561,c), -(884,593,l), +(904,588,l), (860,588,l) ); }, @@ -197,9 +186,7 @@ nodes = ( (629,272,o), (720,39,o), (882,-85,c), -(903,-49,o), -(948,6,o), -(977,32,c), +(977,32,l), (825,128,o), (738,339,o), (699,500,c) @@ -237,9 +224,7 @@ nodes = ( (204,298,o), (189,111,o), (63,7,c), -(93,-14,o), -(142,-60,o), -(163,-87,c), +(163,-87,l), (315,35,o), (338,254,o), (338,441,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_F_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_F_.glyph index 94ec385..0beac16 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_F_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53D_F_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53DF; layers = ( { @@ -70,13 +71,11 @@ nodes = ( (660,104,o), (338,-7,o), (76,-44,c), -(82,-51,o), -(88,-64,o), -(90,-72,c), +(90,-72,l), (358,-29,o), (682,82,o), (822,281,c), -(803,296,l), +(805,294,l), (796,294,l) ); }, @@ -87,9 +86,7 @@ nodes = ( (348,84,o), (622,-32,o), (914,-74,c), -(918,-65,o), -(926,-53,o), -(933,-46,c), +(933,-46,l), (638,-8,o), (368,107,o), (243,283,c) @@ -181,26 +178,22 @@ nodes = ( (618,113,o), (351,51,o), (14,39,c), -(36,5,o), -(59,-57,o), -(68,-96,c), +(68,-96,l), (431,-69,o), (726,11,o), (859,270,c), -(766,320,l), +(776,314,l), (741,314,l) ); }, { closed = 1; nodes = ( -(197,162,l), -(359,7,o), -(601,-68,o), +(147,209,l), +(321,25,o), +(580,-63,o), (900,-93,c), -(918,-54,o), -(955,9,o), -(985,42,c), +(985,42,l), (695,56,o), (444,111,o), (320,220,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_0.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_0.glyph index a5306e3..1142e29 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_0.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_0.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53E0; layers = ( { @@ -34,13 +35,11 @@ nodes = ( (637,696,o), (378,642,o), (171,622,c), -(177,616,o), -(183,604,o), -(186,595,c), +(186,595,l), (397,619,o), (662,675,o), (780,785,c), -(761,801,l), +(761,799,l), (754,799,l) ); }, @@ -74,13 +73,11 @@ nodes = ( (356,490,o), (200,430,o), (68,405,c), -(75,399,o), -(84,387,o), -(87,380,c), +(87,380,l), (224,410,o), (382,473,o), (453,574,c), -(432,587,l), +(432,585,l), (426,585,l) ); }, @@ -114,13 +111,11 @@ nodes = ( (803,491,o), (639,432,o), (501,409,c), -(508,403,o), -(516,392,o), -(520,384,c), +(520,384,l), (662,413,o), (828,473,o), (902,574,c), -(882,587,l), +(882,585,l), (875,585,l) ); }, @@ -214,13 +209,11 @@ nodes = ( (625,725,o), (404,686,o), (179,676,c), -(195,655,o), -(214,621,o), -(222,597,c), +(222,597,l), (470,617,o), (705,663,o), (821,802,c), -(754,843,l), +(756,839,l), (735,839,l) ); }, @@ -254,13 +247,11 @@ nodes = ( (341,514,o), (205,467,o), (55,449,c), -(73,429,o), -(97,393,o), -(107,370,c), +(107,370,l), (279,399,o), (429,457,o), (500,585,c), -(433,616,l), +(435,612,l), (414,612,l) ); }, @@ -294,13 +285,11 @@ nodes = ( (762,519,o), (625,471,o), (484,452,c), -(502,434,o), -(528,400,o), -(540,377,c), +(540,377,l), (704,407,o), (854,462,o), (927,580,c), -(856,616,l), +(858,612,l), (836,612,l) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_3.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_3.glyph index 1626c61..a23897d 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_3.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_3.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53E3; layers = ( { @@ -8,22 +9,22 @@ shapes = ( closed = 1; nodes = ( (148,719,l), -(148,-41,l), -(178,-41,l), +(148,-31,l), +(178,-31,l), (178,690,l), (827,690,l), -(827,-33,l), -(857,-33,l), +(827,-31,l), +(857,-31,l), (857,719,l) ); }, { closed = 1; nodes = ( -(158,79,l), -(158,49,l), -(856,49,l), -(856,79,l) +(158,-1,l), +(158,-31,l), +(856,-31,l), +(856,-1,l) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_4.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_4.glyph index 56dd136..2a91ddc 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_4.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_4.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53E4; layers = ( { @@ -16,32 +17,32 @@ nodes = ( { closed = 1; nodes = ( -(190,17,l), -(190,-13,l), -(813,-13,l), -(813,17,l) +(190,-23,l), +(190,-53,l), +(813,-53,l), +(813,-23,l) ); }, { closed = 1; nodes = ( (484,831,l), -(484,341,l), -(514,341,l), +(484,331,l), +(514,331,l), (514,831,l) ); }, { closed = 1; nodes = ( -(178,358,l), -(178,-73,l), -(207,-73,l), -(207,328,l), -(798,328,l), -(798,-69,l), -(827,-69,l), -(827,358,l) +(178,348,l), +(178,-53,l), +(207,-53,l), +(207,318,l), +(798,318,l), +(798,-53,l), +(827,-53,l), +(827,348,l) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_5.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_5.glyph index 680570d..76a8d1a 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_5.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_5.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53E5; layers = ( { @@ -7,23 +8,23 @@ shapes = ( { closed = 1; nodes = ( -(264,474,l), -(264,445,l), -(588,445,l), -(588,161,l), -(264,161,l), -(264,131,l), -(618,131,l), -(618,474,l) +(305,474,l), +(305,445,l), +(629,445,l), +(629,121,l), +(305,121,l), +(305,91,l), +(659,91,l), +(659,474,l) ); }, { closed = 1; nodes = ( -(249,474,l), -(249,55,l), -(279,55,l), -(279,474,l) +(290,474,l), +(290,91,l), +(320,91,l), +(320,474,l) ); }, { @@ -39,9 +40,8 @@ nodes = ( closed = 1; nodes = ( (875,671,l), -(875,664,ls), -(859,177,o), -(838,8,o), +(864,347,o), +(852,22,o), (798,-32,cs), (786,-44,o), (772,-47,o), @@ -49,20 +49,15 @@ nodes = ( (724,-46,o), (647,-46,o), (565,-39,c), -(571,-47,o), -(574,-58,o), -(574,-68,c), +(574,-68,l), (644,-73,o), (717,-76,o), (753,-75,cs), (788,-74,o), (807,-68,o), (825,-47,cs), -(869,0,o), -(886,166,o), -(905,649,cs), -(905,655,o), -(905,671,o), +(887,20,o), +(896,434,o), (905,671,c) ); }, @@ -73,9 +68,7 @@ nodes = ( (253,655,o), (164,488,o), (54,380,c), -(62,376,o), -(76,366,o), -(81,361,c), +(81,361,l), (187,474,o), (279,640,o), (338,823,c) @@ -105,8 +98,8 @@ nodes = ( closed = 1; nodes = ( (197,483,l), -(197,24,l), -(338,24,l), +(197,91,l), +(338,91,l), (338,483,l) ); }, @@ -123,9 +116,8 @@ nodes = ( closed = 1; nodes = ( (787,729,l), -(787,699,ls), -(778,290,o), -(765,106,o), +(781,444,o), +(776,118,o), (732,71,cs), (719,57,o), (707,53,o), @@ -133,20 +125,15 @@ nodes = ( (658,53,o), (600,53,o), (534,58,c), -(563,14,o), -(585,-54,o), -(587,-96,c), +(587,-96,l), (648,-98,o), (713,-99,o), (755,-91,cs), (802,-82,o), (834,-68,o), (868,-21,cs), -(911,37,o), -(924,205,o), -(936,659,cs), -(937,678,o), -(938,729,o), +(921,51,o), +(927,335,o), (938,729,c) ); }, @@ -157,9 +144,7 @@ nodes = ( (208,697,o), (117,545,o), (10,456,c), -(45,432,o), -(108,380,o), -(135,353,c), +(135,353,l), (244,460,o), (346,635,o), (408,817,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_6.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_6.glyph index dcf92f9..e951a47 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_6.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_6.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53E6; layers = ( { @@ -17,9 +18,8 @@ nodes = ( closed = 1; nodes = ( (837,318,l), -(837,312,ls), -(821,77,o), -(806,-10,o), +(826,157,o), +(815,-1,o), (780,-34,cs), (771,-43,o), (761,-44,o), @@ -27,20 +27,15 @@ nodes = ( (718,-44,o), (650,-43,o), (579,-37,c), -(585,-45,o), -(588,-57,o), -(590,-65,c), +(590,-65,l), (653,-70,o), (717,-71,o), (745,-71,cs), (774,-70,o), (790,-66,o), (805,-52,cs), -(834,-22,o), -(849,63,o), -(866,298,cs), -(867,304,o), -(868,318,o), +(841,-15,o), +(854,132,o), (868,318,c) ); }, @@ -51,9 +46,7 @@ nodes = ( (446,215,o), (381,29,o), (57,-47,c), -(63,-53,o), -(72,-65,o), -(75,-72,c), +(75,-72,l), (403,8,o), (474,199,o), (503,442,c) @@ -97,9 +90,8 @@ nodes = ( closed = 1; nodes = ( (753,351,l), -(753,330,ls), -(744,156,o), -(732,76,o), +(748,244,o), +(743,86,o), (712,58,cs), (699,48,o), (687,46,o), @@ -107,20 +99,15 @@ nodes = ( (642,46,o), (587,47,o), (533,51,c), -(560,12,o), -(580,-49,o), -(583,-94,c), +(583,-94,l), (643,-95,o), (702,-95,o), (737,-90,cs), (781,-85,o), (814,-74,o), (843,-41,cs), -(877,-3,o), -(893,90,o), -(904,293,cs), -(906,312,o), -(908,351,o), +(883,4,o), +(895,129,o), (908,351,c) ); }, @@ -131,9 +118,7 @@ nodes = ( (386,244,o), (368,108,o), (39,37,c), -(70,5,o), -(106,-54,o), -(120,-93,c), +(120,-93,l), (492,1,o), (537,187,o), (557,428,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_8.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_8.glyph index 009178c..e20c84a 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_8.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_8.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53E8; layers = ( { @@ -17,9 +18,8 @@ nodes = ( closed = 1; nodes = ( (889,737,l), -(889,728,ls), -(872,205,o), -(853,25,o), +(878,392,o), +(866,39,o), (815,-16,c), (804,-30,o), (791,-32,o), @@ -27,20 +27,15 @@ nodes = ( (749,-32,o), (685,-31,o), (617,-26,c), -(623,-34,o), -(624,-46,o), -(625,-56,c), +(625,-56,l), (685,-61,o), (742,-62,o), (774,-62,cs), (806,-61,o), (824,-54,o), (842,-32,cs), -(884,16,o), -(901,188,o), -(918,714,cs), -(918,719,o), -(918,737,o), +(897,31,o), +(907,378,o), (918,737,c) ); }, @@ -51,9 +46,7 @@ nodes = ( (586,349,o), (537,98,o), (318,-51,c), -(325,-56,o), -(337,-67,o), -(342,-73,c), +(342,-73,l), (562,89,o), (614,333,o), (635,727,c) @@ -65,10 +58,10 @@ nodes = ( (102,734,l), (102,705,l), (300,705,l), -(300,199,l), -(102,199,l), -(102,170,l), -(329,170,l), +(300,159,l), +(102,159,l), +(102,130,l), +(329,130,l), (329,734,l) ); }, @@ -76,8 +69,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,130,l), +(117,130,l), (117,734,l) ); } @@ -101,9 +94,8 @@ nodes = ( closed = 1; nodes = ( (790,782,l), -(790,748,ls), -(785,292,o), -(779,112,o), +(787,467,o), +(786,121,o), (752,77,cs), (742,62,o), (732,57,o), @@ -111,20 +103,15 @@ nodes = ( (690,57,o), (649,57,o), (600,61,c), -(624,20,o), -(643,-42,o), -(644,-82,c), +(644,-82,l), (698,-83,o), (753,-84,o), (791,-76,cs), (832,-67,o), (859,-52,o), (887,-7,cs), -(923,48,o), -(930,220,o), -(937,711,cs), -(937,730,o), -(938,782,o), +(931,61,o), +(932,368,o), (938,782,c) ); }, @@ -135,9 +122,7 @@ nodes = ( (534,384,o), (498,145,o), (307,23,c), -(341,-4,o), -(402,-66,o), -(421,-95,c), +(421,-95,l), (626,62,o), (677,329,o), (686,710,c) @@ -149,10 +134,10 @@ nodes = ( (134,771,l), (134,631,l), (258,631,l), -(258,301,l), -(134,301,l), -(134,160,l), -(398,160,l), +(258,291,l), +(134,291,l), +(134,150,l), +(398,150,l), (398,771,l) ); }, @@ -160,8 +145,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,73,l), -(200,73,l), +(59,150,l), +(200,150,l), (200,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_9.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_9.glyph index 9ab4a3d..e93a4d7 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_9.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_9.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53E9; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (104,757,l), (104,727,l), (361,727,l), -(361,243,l), -(104,243,l), -(104,214,l), -(390,214,l), +(361,146,l), +(104,146,l), +(104,117,l), +(390,117,l), (390,757,l) ); }, @@ -39,9 +40,7 @@ nodes = ( (836,147,o), (768,146,o), (681,149,c), -(686,139,o), -(692,127,o), -(694,118,c), +(694,118,l), (792,118,o), (849,118,o), (876,124,cs), @@ -73,10 +72,10 @@ nodes = ( (151,780,l), (151,646,l), (287,646,l), -(287,285,l), -(151,285,l), -(151,151,l), -(430,151,l), +(287,198,l), +(151,198,l), +(151,64,l), +(430,64,l), (430,780,l) ); }, @@ -102,9 +101,7 @@ nodes = ( (751,199,o), (693,199,o), (648,202,c), -(670,163,o), -(697,92,o), -(703,48,c), +(703,48,l), (779,48,o), (836,52,o), (881,77,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_A_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_A_.glyph index 2d65af8..89aea8d 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_A_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_A_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53EA; layers = ( { @@ -24,9 +25,7 @@ nodes = ( (285,117,o), (163,13,o), (51,-52,c), -(57,-58,o), -(67,-68,o), -(71,-74,c), +(71,-74,l), (185,-6,o), (307,100,o), (377,201,c) @@ -77,9 +76,7 @@ nodes = ( (260,155,o), (147,60,o), (45,4,c), -(80,-20,o), -(136,-66,o), -(167,-97,c), +(167,-97,l), (271,-32,o), (387,71,o), (470,168,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_B_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_B_.glyph index e28f001..ea45fdc 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_B_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_B_.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni53EB; layers = ( { +guides = ( +{ +angle = 193.358; +pos = (848,224); +} +); layerId = m01; shapes = ( { @@ -16,10 +23,8 @@ nodes = ( { closed = 1; nodes = ( -(503,134,l), -(521,146,o), -(549,153,o), -(848,224,c), +(499,141,l), +(848,224,l), (847,230,o), (846,243,o), (847,252,c), @@ -30,18 +35,17 @@ nodes = ( { closed = 1; nodes = ( -(503,148,o), -(567,181,o), -(567,181,c), +(526,153,ls), +(551,164,o), +(567,197,o), +(567,225,cs), (567,742,l), (537,742,l), (537,228,ls), (537,189,o), (502,170,o), (485,163,c), -(491,155,o), -(499,142,o), -(503,134,c) +(499,141,l) ); }, { @@ -50,10 +54,10 @@ nodes = ( (133,733,l), (133,704,l), (370,704,l), -(370,220,l), -(133,220,l), -(133,190,l), -(399,190,l), +(370,243,l), +(133,243,l), +(133,213,l), +(399,213,l), (399,733,l) ); }, @@ -61,8 +65,8 @@ nodes = ( closed = 1; nodes = ( (116,733,l), -(116,93,l), -(145,93,l), +(116,213,l), +(145,213,l), (145,733,l) ); } @@ -71,6 +75,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 195.579; +pos = (854,182); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -85,10 +95,8 @@ nodes = ( { closed = 1; nodes = ( -(503,60,l), -(537,84,o), -(585,107,o), -(854,182,c), +(491,81,l), +(854,182,l), (842,213,o), (826,266,o), (817,307,c), @@ -99,18 +107,17 @@ nodes = ( { closed = 1; nodes = ( -(503,111,o), -(650,196,o), -(650,196,c), +(547,111,ls), +(604,142,o), +(650,211,o), +(650,276,cs), (650,760,l), (500,760,l), (500,278,ls), (500,227,o), (465,193,o), (438,176,c), -(461,151,o), -(493,93,o), -(503,60,c) +(491,81,l) ); }, { @@ -130,8 +137,8 @@ nodes = ( closed = 1; nodes = ( (63,774,l), -(63,58,l), -(198,58,l), +(63,142,l), +(198,142,l), (198,774,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_C_.glyph index c63c9d4..a7a2870 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_C_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53EC; layers = ( { @@ -7,10 +8,10 @@ shapes = ( { closed = 1; nodes = ( -(209,7,l), -(209,-22,l), -(810,-22,l), -(810,7,l) +(209,-33,l), +(209,-62,l), +(810,-62,l), +(810,-33,l) ); }, { @@ -26,12 +27,12 @@ nodes = ( closed = 1; nodes = ( (193,330,l), -(193,-71,l), -(223,-71,l), +(193,-62,l), +(223,-62,l), (223,301,l), (795,301,l), -(795,-67,l), -(824,-67,l), +(795,-62,l), +(824,-62,l), (824,330,l) ); }, @@ -39,9 +40,8 @@ nodes = ( closed = 1; nodes = ( (822,759,l), -(822,753,ls), -(805,535,o), -(787,453,o), +(810,605,o), +(797,463,o), (760,428,cs), (751,421,o), (739,420,o), @@ -49,20 +49,15 @@ nodes = ( (694,420,o), (623,421,o), (551,426,c), -(557,419,o), -(560,407,o), -(561,399,c), +(561,399,l), (627,393,o), (693,392,o), (722,392,cs), (752,393,o), (768,397,o), (783,412,cs), -(815,440,o), -(831,522,o), -(851,740,cs), -(851,746,o), -(852,759,o), +(826,450,o), +(837,595,o), (852,759,c) ); }, @@ -73,9 +68,7 @@ nodes = ( (402,593,o), (321,414,o), (49,340,c), -(55,335,o), -(63,324,o), -(67,317,c), +(67,317,l), (342,395,o), (428,576,o), (470,753,c) @@ -91,10 +84,10 @@ shapes = ( { closed = 1; nodes = ( -(239,70,l), -(239,-61,l), -(757,-61,l), -(757,70,l) +(239,40,l), +(239,-91,l), +(757,-91,l), +(757,40,l) ); }, { @@ -110,12 +103,12 @@ nodes = ( closed = 1; nodes = ( (156,343,l), -(156,-97,l), -(305,-97,l), +(156,-91,l), +(305,-91,l), (305,212,l), (705,212,l), -(705,-97,l), -(862,-97,l), +(705,-91,l), +(862,-91,l), (862,343,l) ); }, @@ -123,9 +116,8 @@ nodes = ( closed = 1; nodes = ( (745,801,l), -(745,781,ls), -(736,607,o), -(723,530,o), +(740,694,o), +(735,541,o), (704,512,cs), (692,502,o), (681,500,o), @@ -133,20 +125,15 @@ nodes = ( (640,500,o), (592,500,o), (543,505,c), -(567,468,o), -(585,411,o), -(587,371,c), +(587,371,l), (644,369,o), (699,370,o), (733,374,cs), (772,379,o), (803,389,o), (831,420,cs), -(863,456,o), -(879,546,o), -(892,746,cs), -(894,763,o), -(895,801,o), +(875,469,o), +(883,612,o), (895,801,c) ); }, @@ -157,9 +144,7 @@ nodes = ( (343,629,o), (307,506,o), (23,437,c), -(55,406,o), -(92,347,o), -(106,310,c), +(106,310,l), (428,403,o), (497,569,o), (529,745,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_D_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_D_.glyph index 09a0a1b..c66e4a7 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_D_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_D_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53ED; layers = ( { @@ -11,9 +12,7 @@ nodes = ( (745,392,o), (782,84,o), (927,-59,c), -(932,-50,o), -(944,-40,o), -(952,-34,c), +(952,-34,l), (811,95,o), (771,407,o), (756,770,c) @@ -26,9 +25,7 @@ nodes = ( (502,393,o), (459,120,o), (324,-45,c), -(330,-50,o), -(341,-59,o), -(347,-66,c), +(347,-66,l), (485,114,o), (530,376,o), (553,759,c) @@ -40,10 +37,10 @@ nodes = ( (102,746,l), (102,717,l), (309,717,l), -(309,199,l), -(102,199,l), -(102,170,l), -(338,170,l), +(309,149,l), +(102,149,l), +(102,120,l), +(338,120,l), (338,746,l) ); }, @@ -51,8 +48,8 @@ nodes = ( closed = 1; nodes = ( (87,746,l), -(87,84,l), -(117,84,l), +(87,120,l), +(117,120,l), (117,746,l) ); } @@ -70,9 +67,7 @@ nodes = ( (704,433,o), (729,111,o), (863,-90,c), -(888,-47,o), -(942,15,o), -(978,43,c), +(978,43,l), (860,200,o), (833,503,o), (821,808,c) @@ -85,9 +80,7 @@ nodes = ( (479,488,o), (456,179,o), (345,27,c), -(380,-1,o), -(430,-59,o), -(456,-98,c), +(456,-98,l), (589,97,o), (617,412,o), (631,787,c) @@ -110,8 +103,8 @@ nodes = ( closed = 1; nodes = ( (59,768,l), -(59,61,l), -(193,61,l), +(59,146,l), +(193,146,l), (193,768,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_E_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_E_.glyph index dc4be16..d05c331 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_E_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_E_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53EE; layers = ( { @@ -24,9 +25,7 @@ nodes = ( (657,-37,o), (586,-37,o), (501,-35,c), -(507,-45,o), -(512,-59,o), -(515,-66,c), +(515,-66,l), (611,-66,o), (670,-67,o), (697,-62,cs), @@ -42,10 +41,10 @@ nodes = ( (102,734,l), (102,705,l), (309,705,l), -(309,199,l), -(102,199,l), -(102,170,l), -(338,170,l), +(309,159,l), +(102,159,l), +(102,130,l), +(338,130,l), (338,734,l) ); }, @@ -53,8 +52,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,130,l), +(117,130,l), (117,734,l) ); } @@ -85,9 +84,7 @@ nodes = ( (612,64,o), (537,63,o), (481,68,c), -(503,28,o), -(530,-44,o), -(538,-88,c), +(538,-88,l), (630,-88,o), (698,-85,o), (748,-60,cs), @@ -103,10 +100,10 @@ nodes = ( (134,771,l), (134,631,l), (273,631,l), -(273,301,l), -(134,301,l), -(134,160,l), -(412,160,l), +(273,271,l), +(134,271,l), +(134,130,l), +(412,130,l), (412,771,l) ); }, @@ -114,8 +111,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(200,78,l), +(59,130,l), +(200,130,l), (200,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_F_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_F_.glyph index 60ee204..ade50f5 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_F_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53E_F_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53EF; layers = ( { @@ -15,9 +16,7 @@ nodes = ( (731,-36,o), (655,-37,o), (566,-34,c), -(571,-45,o), -(576,-60,o), -(579,-68,c), +(579,-68,l), (674,-68,o), (741,-69,o), (771,-64,cs), @@ -31,8 +30,8 @@ nodes = ( closed = 1; nodes = ( (176,544,l), -(176,103,l), -(205,103,l), +(176,146,l), +(205,146,l), (205,544,l) ); }, @@ -42,10 +41,10 @@ nodes = ( (188,544,l), (188,515,l), (539,515,l), -(539,216,l), -(188,216,l), -(188,186,l), -(569,186,l), +(539,176,l), +(188,176,l), +(188,146,l), +(569,146,l), (569,544,l) ); }, @@ -76,9 +75,7 @@ nodes = ( (636,56,o), (545,55,o), (478,60,c), -(501,21,o), -(531,-51,o), -(539,-94,c), +(539,-94,l), (644,-94,o), (719,-91,o), (774,-66,cs), @@ -92,8 +89,8 @@ nodes = ( closed = 1; nodes = ( (131,551,l), -(131,78,l), -(272,78,l), +(131,145,l), +(272,145,l), (272,551,l) ); }, @@ -103,10 +100,10 @@ nodes = ( (191,551,l), (191,413,l), (423,413,l), -(423,291,l), -(191,291,l), -(191,153,l), -(567,153,l), +(423,283,l), +(191,283,l), +(191,145,l), +(567,145,l), (567,551,l) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_0.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_0.glyph index c50070e..5bcfefc 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_0.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_0.glyph @@ -1,28 +1,35 @@ { +color = 4; glyphname = uni53F0; layers = ( { +guides = ( +{ +angle = 183.548; +pos = (823,485); +} +); layerId = m01; shapes = ( { closed = 1; nodes = ( -(214,18,l), -(214,-12,l), -(788,-12,l), -(788,18,l) +(214,-32,l), +(214,-62,l), +(788,-62,l), +(788,-32,l) ); }, { closed = 1; nodes = ( (197,331,l), -(197,-70,l), -(227,-70,l), +(197,-62,l), +(227,-62,l), (227,302,l), (773,302,l), -(773,-66,l), -(803,-66,l), +(773,-62,l), +(803,-62,l), (803,331,l) ); }, @@ -42,9 +49,7 @@ nodes = ( { closed = 1; nodes = ( -(123,442,o), -(151,452,o), -(151,452,c), +(151,452,l), (151,453,l), (259,544,o), (369,670,o), @@ -56,18 +61,14 @@ nodes = ( (159,492,o), (131,468,o), (113,465,c), -(117,457,o), -(122,441,o), -(123,433,c) +(120,441,l) ); }, { closed = 1; nodes = ( -(123,433,l), -(149,443,o), -(194,446,o), -(823,485,c), +(120,441,l), +(823,485,l), (820,491,o), (819,503,o), (818,511,c), @@ -80,27 +81,33 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 182.5471; +pos = (837,463); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { closed = 1; nodes = ( -(222,95,l), -(222,-45,l), -(767,-45,l), -(767,95,l) +(222,55,l), +(222,-85,l), +(767,-85,l), +(767,55,l) ); }, { closed = 1; nodes = ( (151,359,l), -(151,-94,l), -(300,-94,l), +(151,-85,l), +(300,-85,l), (300,220,l), (692,220,l), -(692,-94,l), -(849,-94,l), +(692,-85,l), +(849,-85,l), (849,359,l) ); }, @@ -120,9 +127,7 @@ nodes = ( { closed = 1; nodes = ( -(130,441,o), -(213,484,o), -(213,484,c), +(213,484,l), (213,488,l), (316,570,o), (431,691,o), @@ -134,18 +139,14 @@ nodes = ( (134,580,o), (112,562,o), (82,555,c), -(99,516,o), -(123,444,o), -(130,416,c) +(125,431,l) ); }, { closed = 1; nodes = ( -(130,416,l), -(192,437,o), -(275,438,o), -(837,463,c), +(125,431,l), +(837,463,l), (831,494,o), (825,554,o), (824,594,c), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_1.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_1.glyph index 84877a1..edee1cb 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_1.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_1.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53F1; layers = ( { @@ -18,9 +19,7 @@ nodes = ( (934,-53,o), (944,-4,o), (951,150,c), -(941,153,o), -(930,158,o), -(920,166,c), +(920,166,l), (916,16,o), (908,-23,o), (858,-23,cs), @@ -40,9 +39,7 @@ nodes = ( (770,511,o), (566,362,o), (381,267,c), -(389,261,o), -(398,252,o), -(404,245,c), +(404,245,l), (589,343,o), (791,491,o), (915,645,c) @@ -54,10 +51,10 @@ nodes = ( (100,725,l), (100,696,l), (310,696,l), -(310,229,l), -(100,229,l), -(100,200,l), -(339,200,l), +(310,179,l), +(100,179,l), +(100,150,l), +(339,150,l), (339,725,l) ); }, @@ -65,8 +62,8 @@ nodes = ( closed = 1; nodes = ( (84,725,l), -(84,103,l), -(114,103,l), +(84,150,l), +(114,150,l), (114,725,l) ); } @@ -91,9 +88,7 @@ nodes = ( (928,-77,o), (964,0,o), (978,193,c), -(937,202,o), -(874,231,o), -(839,258,c), +(839,258,l), (833,105,o), (828,66,o), (795,66,cs), @@ -113,9 +108,7 @@ nodes = ( (707,538,o), (517,412,o), (365,352,c), -(401,321,o), -(448,268,o), -(469,236,c), +(469,236,l), (624,302,o), (822,433,o), (973,592,c) @@ -127,10 +120,10 @@ nodes = ( (141,756,l), (141,622,l), (262,622,l), -(262,289,l), -(141,289,l), -(141,155,l), -(406,155,l), +(262,249,l), +(141,249,l), +(141,115,l), +(406,115,l), (406,756,l) ); }, @@ -138,8 +131,8 @@ nodes = ( closed = 1; nodes = ( (57,756,l), -(57,58,l), -(198,58,l), +(57,115,l), +(198,115,l), (198,756,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_2.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_2.glyph index 0ed53df..fb1dcd2 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_2.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_2.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53F2; layers = ( { @@ -12,9 +13,7 @@ nodes = ( (486,248,o), (476,62,o), (55,-41,c), -(61,-48,o), -(68,-60,o), -(72,-67,c), +(72,-67,l), (498,42,o), (516,236,o), (516,434,cs), @@ -46,9 +45,7 @@ nodes = ( (304,30,o), (531,-46,o), (933,-75,c), -(936,-65,o), -(941,-54,o), -(948,-47,c), +(948,-47,l), (548,-19,o), (327,50,o), (213,311,c) @@ -69,9 +66,7 @@ nodes = ( (426,215,o), (378,84,o), (23,30,c), -(55,-3,o), -(95,-67,o), -(112,-100,c), +(112,-100,l), (492,-22,o), (577,166,o), (577,389,cs), @@ -103,9 +98,7 @@ nodes = ( (289,-13,o), (545,-67,o), (923,-82,c), -(932,-31,o), -(962,35,o), -(990,70,c), +(990,70,l), (628,69,o), (410,94,o), (274,327,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_3.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_3.glyph index db04c4c..e0614de 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_3.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_3.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53F3; layers = ( { @@ -16,22 +17,22 @@ nodes = ( { closed = 1; nodes = ( -(298,16,l), -(298,-14,l), -(841,-14,l), -(841,16,l) +(298,-24,l), +(298,-54,l), +(841,-54,l), +(841,-24,l) ); }, { closed = 1; nodes = ( (280,372,l), -(280,-72,l), -(309,-72,l), +(280,-54,l), +(309,-54,l), (309,342,l), (826,342,l), -(826,-67,l), -(856,-67,l), +(826,-54,l), +(856,-54,l), (856,372,l) ); }, @@ -42,9 +43,7 @@ nodes = ( (381,570,o), (267,312,o), (41,156,c), -(48,150,o), -(57,140,o), -(62,133,c), +(62,133,l), (290,294,o), (406,555,o), (471,824,c) @@ -69,22 +68,22 @@ nodes = ( { closed = 1; nodes = ( -(337,99,l), -(337,-41,l), -(779,-41,l), -(779,99,l) +(337,59,l), +(337,-81,l), +(779,-81,l), +(779,59,l) ); }, { closed = 1; nodes = ( (250,408,l), -(250,-96,l), -(396,-96,l), +(250,-81,l), +(396,-81,l), (396,268,l), (728,268,l), -(728,-91,l), -(882,-91,l), +(728,-81,l), +(882,-81,l), (882,408,l) ); }, @@ -95,9 +94,7 @@ nodes = ( (323,616,o), (222,347,o), (16,209,c), -(46,180,o), -(91,126,o), -(112,92,c), +(112,92,l), (343,258,o), (455,548,o), (520,827,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_5.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_5.glyph index a2ab42f..8ef30d6 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_5.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_5.glyph @@ -1,4 +1,5 @@ { +color = 7; glyphname = uni53F5; layers = ( { diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_6.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_6.glyph index 1231c72..2949d56 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_6.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_6.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53F6; layers = ( { @@ -28,10 +29,10 @@ nodes = ( (100,719,l), (100,690,l), (325,690,l), -(325,209,l), -(100,209,l), -(100,180,l), -(354,180,l), +(325,169,l), +(100,169,l), +(100,140,l), +(354,140,l), (354,719,l) ); }, @@ -39,8 +40,8 @@ nodes = ( closed = 1; nodes = ( (83,719,l), -(83,97,l), -(112,97,l), +(83,140,l), +(112,140,l), (112,719,l) ); } @@ -75,10 +76,10 @@ nodes = ( (138,757,l), (138,623,l), (265,623,l), -(265,296,l), -(138,296,l), -(138,162,l), -(403,162,l), +(265,256,l), +(138,256,l), +(138,122,l), +(403,122,l), (403,757,l) ); }, @@ -86,8 +87,8 @@ nodes = ( closed = 1; nodes = ( (63,757,l), -(63,86,l), -(197,86,l), +(63,122,l), +(197,122,l), (197,757,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_7.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_7.glyph index b5e0cd9..001cfbd 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_7.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_7.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53F7; layers = ( { @@ -44,9 +45,8 @@ nodes = ( closed = 1; nodes = ( (769,252,l), -(769,246,l), -(741,67,o), -(717,-8,o), +(754,151,o), +(732,4,o), (683,-34,cs), (673,-42,o), (662,-43,o), @@ -54,20 +54,15 @@ nodes = ( (611,-43,o), (539,-42,o), (465,-34,c), -(471,-43,o), -(474,-55,o), -(475,-64,c), +(475,-64,l), (545,-69,o), (612,-70,o), (641,-70,cs), (672,-69,o), (688,-66,o), (705,-53,cs), -(742,-22,o), -(768,52,o), -(797,233,cs), -(798,239,o), -(799,252,o), +(762,-5,o), +(781,137,o), (799,252,c) ); }, @@ -75,13 +70,9 @@ nodes = ( closed = 1; nodes = ( (302,413,l), -(282,353,o), -(255,275,o), -(231,224,c), +(231,224,l), (265,224,l), -(285,272,o), -(313,346,o), -(331,408,c) +(331,408,l) ); } ); @@ -131,9 +122,8 @@ nodes = ( closed = 1; nodes = ( (685,271,l), -(684,253,ls), -(672,133,o), -(654,68,o), +(676,173,o), +(664,75,o), (631,51,cs), (617,42,o), (603,41,o), @@ -141,20 +131,15 @@ nodes = ( (550,41,o), (475,42,o), (410,48,c), -(437,9,o), -(458,-48,o), -(461,-90,c), +(461,-90,l), (529,-93,o), (595,-92,o), (636,-89,cs), (688,-86,o), (725,-77,o), (759,-45,cs), -(795,-11,o), -(818,65,o), -(835,212,c), -(839,231,o), -(842,271,o), +(806,-1,o), +(822,98,o), (842,271,c) ); }, @@ -162,13 +147,9 @@ nodes = ( closed = 1; nodes = ( (249,406,l), -(225,319,o), -(189,210,o), -(160,140,c), +(160,140,l), (328,140,l), -(351,202,o), -(383,302,o), -(407,385,c) +(407,385,l) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_8.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_8.glyph index 2d9153e..9463436 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_8.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_8.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53F8; layers = ( { @@ -33,9 +34,7 @@ nodes = ( (797,-26,o), (725,-27,o), (643,-25,c), -(649,-36,o), -(654,-50,o), -(657,-59,c), +(657,-59,l), (745,-59,o), (807,-60,o), (835,-54,cs), @@ -49,8 +48,8 @@ nodes = ( closed = 1; nodes = ( (177,422,l), -(177,46,l), -(206,46,l), +(177,62,l), +(206,62,l), (206,422,l) ); }, @@ -60,10 +59,10 @@ nodes = ( (192,422,l), (192,392,l), (599,392,l), -(599,151,l), -(192,151,l), -(192,122,l), -(628,122,l), +(599,91,l), +(192,91,l), +(192,62,l), +(628,62,l), (628,422,l) ); } @@ -103,9 +102,7 @@ nodes = ( (720,58,o), (656,58,o), (606,62,c), -(626,21,o), -(648,-52,o), -(652,-95,c), +(652,-95,l), (744,-96,o), (808,-92,o), (854,-67,cs), @@ -119,8 +116,8 @@ nodes = ( closed = 1; nodes = ( (130,426,l), -(130,3,l), -(272,3,l), +(130,75,l), +(272,75,l), (272,426,l) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_9.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_9.glyph index 742ea27..a44add7 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_9.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_9.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53F9; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (98,696,l), (98,667,l), (293,667,l), -(293,182,l), -(98,182,l), -(98,153,l), -(323,153,l), +(293,132,l), +(98,132,l), +(98,103,l), +(323,103,l), (323,696,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (84,696,l), -(84,56,l), -(113,56,l), +(84,103,l), +(113,103,l), (113,696,l) ); }, @@ -42,9 +43,7 @@ nodes = ( (499,331,o), (636,49,o), (927,-66,c), -(932,-59,o), -(941,-50,o), -(948,-44,c), +(948,-44,l), (659,64,o), (522,346,o), (457,720,c) @@ -58,13 +57,11 @@ nodes = ( (776,283,o), (550,45,o), (286,-45,c), -(293,-51,o), -(302,-63,o), -(306,-70,c), +(306,-70,l), (574,28,o), (803,266,o), (870,731,c), -(852,738,l), +(857,736,l), (846,736,l) ); } @@ -81,10 +78,10 @@ nodes = ( (111,744,l), (111,611,l), (241,611,l), -(241,244,l), -(111,244,l), -(111,111,l), -(376,111,l), +(241,224,l), +(111,224,l), +(111,91,l), +(376,91,l), (376,744,l) ); }, @@ -92,8 +89,8 @@ nodes = ( closed = 1; nodes = ( (51,744,l), -(51,28,l), -(188,28,l), +(51,91,l), +(188,91,l), (188,744,l) ); }, @@ -109,16 +106,14 @@ nodes = ( { closed = 1; nodes = ( -(417,633,l), -(489,289,o), -(611,32,o), +(411,669,l), +(484,308,o), +(608,38,o), (882,-99,c), -(904,-61,o), -(948,-4,o), -(981,24,c), -(730,130,o), -(603,367,o), -(545,658,c) +(981,24,l), +(727,136,o), +(598,386,o), +(539,694,c) ); }, { @@ -129,13 +124,11 @@ nodes = ( (743,396,o), (566,134,o), (307,20,c), -(339,-6,o), -(379,-61,o), -(399,-97,c), +(399,-97,l), (691,52,o), (875,318,o), (940,752,c), -(844,786,l), +(873,780,l), (820,780,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_B_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_B_.glyph index e8dd859..699217e 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_B_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_B_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53FB; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (102,746,l), (102,717,l), (309,717,l), -(309,199,l), -(102,199,l), -(102,170,l), -(338,170,l), +(309,133,l), +(102,133,l), +(102,104,l), +(338,104,l), (338,746,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (87,746,l), -(87,84,l), -(117,84,l), +(87,104,l), +(117,104,l), (117,746,l) ); }, @@ -39,9 +40,8 @@ nodes = ( closed = 1; nodes = ( (886,621,l), -(886,612,ls), -(867,173,o), -(844,16,o), +(874,327,o), +(857,30,o), (810,-20,c), (800,-33,o), (790,-35,o), @@ -49,20 +49,15 @@ nodes = ( (754,-35,o), (705,-34,o), (651,-30,c), -(657,-38,o), -(659,-51,o), -(660,-60,c), +(660,-60,l), (705,-64,o), (751,-65,o), (776,-64,cs), (803,-64,o), (820,-58,o), (836,-38,cs), -(875,7,o), -(894,149,o), -(916,598,cs), -(916,604,o), -(916,621,o), +(892,26,o), +(905,380,o), (916,621,c) ); }, @@ -73,9 +68,7 @@ nodes = ( (593,477,o), (593,115,o), (315,-49,c), -(323,-54,o), -(335,-63,o), -(341,-69,c), +(341,-69,l), (622,104,o), (622,466,o), (623,831,c) @@ -94,10 +87,10 @@ nodes = ( (134,768,l), (134,620,l), (255,620,l), -(255,293,l), -(134,293,l), -(134,146,l), -(391,146,l), +(255,273,l), +(134,273,l), +(134,126,l), +(391,126,l), (391,768,l) ); }, @@ -105,8 +98,8 @@ nodes = ( closed = 1; nodes = ( (59,768,l), -(59,61,l), -(193,61,l), +(59,126,l), +(193,126,l), (193,768,l) ); }, @@ -123,9 +116,8 @@ nodes = ( closed = 1; nodes = ( (802,644,l), -(802,615,ls), -(791,249,o), -(775,89,o), +(795,403,o), +(788,103,o), (744,56,cs), (732,43,o), (721,39,o), @@ -133,20 +125,15 @@ nodes = ( (674,39,o), (624,39,o), (566,44,c), -(589,8,o), -(607,-49,o), -(609,-85,c), +(609,-85,l), (668,-87,o), (730,-88,o), (770,-82,cs), (813,-75,o), (845,-62,o), (876,-20,cs), -(915,31,o), -(934,178,o), -(948,579,cs), -(949,597,o), -(950,644,o), +(928,48,o), +(938,306,o), (950,644,c) ); }, @@ -157,9 +144,7 @@ nodes = ( (541,461,o), (555,187,o), (339,20,c), -(377,-6,o), -(424,-59,o), -(446,-97,c), +(446,-97,l), (686,99,o), (688,426,o), (690,850,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_C_.glyph index ff367a1..432f6b5 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_C_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53FC; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (122,734,l), (122,705,l), (326,705,l), -(326,221,l), -(122,221,l), -(122,191,l), -(355,191,l), +(326,144,l), +(122,144,l), +(122,114,l), +(355,114,l), (355,734,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (104,734,l), -(104,94,l), -(133,94,l), +(104,114,l), +(133,114,l), (133,734,l) ); }, @@ -39,9 +40,8 @@ nodes = ( closed = 1; nodes = ( (866,727,l), -(866,719,ls), -(849,211,o), -(828,35,o), +(855,392,o), +(841,49,o), (792,-5,cs), (781,-17,o), (770,-20,o), @@ -49,20 +49,15 @@ nodes = ( (728,-19,o), (669,-19,o), (602,-14,c), -(608,-22,o), -(611,-34,o), -(612,-44,c), +(612,-44,l), (666,-48,o), (722,-50,o), (753,-49,cs), (783,-48,o), (802,-42,o), (819,-21,cs), -(861,28,o), -(876,191,o), -(895,704,cs), -(895,710,o), -(895,727,o), +(875,45,o), +(884,416,o), (895,727,c) ); }, @@ -92,10 +87,10 @@ nodes = ( (163,773,l), (163,639,l), (251,639,l), -(251,284,l), -(163,284,l), -(163,150,l), -(389,150,l), +(251,244,l), +(163,244,l), +(163,110,l), +(389,110,l), (389,773,l) ); }, @@ -103,8 +98,8 @@ nodes = ( closed = 1; nodes = ( (56,773,l), -(56,57,l), -(193,57,l), +(56,110,l), +(193,110,l), (193,773,l) ); }, @@ -121,9 +116,8 @@ nodes = ( closed = 1; nodes = ( (794,777,l), -(794,744,ls), -(781,300,o), -(763,117,o), +(786,500,o), +(778,135,o), (731,80,cs), (718,64,o), (707,59,o), @@ -131,20 +125,15 @@ nodes = ( (664,59,o), (618,59,o), (566,64,c), -(593,21,o), -(612,-45,o), -(614,-87,c), +(614,-87,l), (668,-88,o), (723,-89,o), (760,-81,cs), (803,-72,o), (831,-58,o), (862,-13,cs), -(906,45,o), -(922,224,o), -(939,707,cs), -(940,726,o), -(941,777,o), +(919,62,o), +(927,384,o), (941,777,c) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_D_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_D_.glyph index 1072213..3f363be 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_D_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni53F_D_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni53FD; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (114,734,l), (114,705,l), (332,705,l), -(332,199,l), -(114,199,l), -(114,170,l), -(362,170,l), +(332,159,l), +(114,159,l), +(114,130,l), +(362,130,l), (362,734,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (99,734,l), -(99,94,l), -(129,94,l), +(99,130,l), +(129,130,l), (129,734,l) ); }, @@ -43,9 +44,7 @@ nodes = ( (480,294,o), (463,92,o), (303,-52,c), -(310,-57,o), -(320,-66,o), -(325,-73,c), +(325,-73,l), (488,76,o), (510,289,o), (510,456,cs), @@ -75,9 +74,7 @@ nodes = ( (950,20,o), (952,97,o), (953,156,c), -(943,159,o), -(931,164,o), -(922,173,c), +(922,173,l), (922,98,o), (920,41,o), (918,17,cs), @@ -112,10 +109,10 @@ nodes = ( (134,771,l), (134,631,l), (249,631,l), -(249,301,l), -(134,301,l), -(134,160,l), -(380,160,l), +(249,281,l), +(134,281,l), +(134,140,l), +(380,140,l), (380,771,l) ); }, @@ -123,8 +120,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(191,78,l), +(59,140,l), +(191,140,l), (191,771,l) ); }, @@ -145,9 +142,7 @@ nodes = ( (449,287,o), (438,118,o), (298,8,c), -(328,-12,o), -(386,-69,o), -(407,-99,c), +(407,-99,l), (570,27,o), (597,260,o), (597,427,cs), @@ -177,9 +172,7 @@ nodes = ( (979,46,o), (985,120,o), (986,176,c), -(950,188,o), -(908,211,o), -(880,234,c), +(880,234,l), (880,174,o), (879,126,o), (878,103,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5401.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5401.glyph index 9b82983..da17691 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5401.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5401.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5401; layers = ( { @@ -33,9 +34,7 @@ nodes = ( (620,-36,o), (566,-36,o), (502,-35,c), -(508,-45,o), -(513,-59,o), -(516,-67,c), +(516,-67,l), (587,-67,o), (633,-67,o), (655,-62,cs), @@ -51,10 +50,10 @@ nodes = ( (102,734,l), (102,705,l), (297,705,l), -(297,199,l), -(102,199,l), -(102,170,l), -(327,170,l), +(297,143,l), +(102,143,l), +(102,114,l), +(327,114,l), (327,734,l) ); }, @@ -62,8 +61,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,114,l), +(117,114,l), (117,734,l) ); } @@ -103,9 +102,7 @@ nodes = ( (588,48,o), (540,47,o), (501,50,c), -(520,13,o), -(541,-51,o), -(547,-91,c), +(547,-91,l), (619,-91,o), (672,-88,o), (713,-64,cs), @@ -121,10 +118,10 @@ nodes = ( (119,771,l), (119,631,l), (242,631,l), -(242,301,l), -(119,301,l), -(119,160,l), -(381,160,l), +(242,241,l), +(119,241,l), +(119,100,l), +(381,100,l), (381,771,l) ); }, @@ -132,8 +129,8 @@ nodes = ( closed = 1; nodes = ( (60,771,l), -(60,78,l), -(195,78,l), +(60,100,l), +(195,100,l), (195,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5403.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5403.glyph index a186bfa..659b4d6 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5403.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5403.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5403; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (102,734,l), (102,705,l), (291,705,l), -(291,199,l), -(102,199,l), -(102,170,l), -(321,170,l), +(291,159,l), +(102,159,l), +(102,130,l), +(321,130,l), (321,734,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,130,l), +(117,130,l), (117,734,l) ); }, @@ -51,9 +52,7 @@ nodes = ( (507,695,o), (449,565,o), (374,478,c), -(382,474,o), -(395,464,o), -(401,459,c), +(401,459,l), (474,549,o), (534,682,o), (573,825,c) @@ -73,9 +72,7 @@ nodes = ( (931,-56,o), (947,-36,o), (954,123,c), -(945,125,o), -(931,131,o), -(923,135,c), +(923,135,l), (919,-4,o), (911,-25,o), (864,-25,cs), @@ -83,13 +80,10 @@ nodes = ( (474,-25,o), (441,-13,o), (441,16,cs), -(441,50,o), -(468,106,o), -(866,448,cs), -(868,450,o), -(871,452,o), -(873,456,c), -(851,467,l), +(441,67,o), +(578,199,o), +(874,455,c), +(852,465,l), (843,465,l) ); } @@ -106,10 +100,10 @@ nodes = ( (134,771,l), (134,631,l), (243,631,l), -(243,301,l), -(134,301,l), -(134,160,l), -(374,160,l), +(243,281,l), +(134,281,l), +(134,140,l), +(374,140,l), (374,771,l) ); }, @@ -117,8 +111,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(191,78,l), +(59,140,l), +(191,140,l), (191,771,l) ); }, @@ -147,9 +141,7 @@ nodes = ( (479,737,o), (412,621,o), (332,551,c), -(365,529,o), -(423,481,o), -(449,455,c), +(449,455,l), (532,541,o), (611,679,o), (658,820,c) @@ -169,9 +161,7 @@ nodes = ( (916,-78,o), (971,-37,o), (986,152,c), -(943,160,o), -(897,176,o), -(857,198,c), +(857,198,l), (853,78,o), (837,64,o), (801,64,cs), @@ -179,13 +169,10 @@ nodes = ( (571,64,o), (548,72,o), (548,96,cs), -(548,129,o), -(573,175,o), -(914,427,c), -(922,435,o), -(929,445,o), -(933,452,c), -(836,507,l), +(548,149,o), +(675,250,o), +(940,447,c), +(836,503,l), (804,503,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5404.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5404.glyph index 4538535..0eb0c49 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5404.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5404.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5404; layers = ( { @@ -7,10 +8,10 @@ shapes = ( { closed = 1; nodes = ( -(225,8,l), -(225,-21,l), -(768,-21,l), -(768,8,l) +(225,-32,l), +(225,-61,l), +(768,-61,l), +(768,-32,l) ); }, { @@ -20,9 +21,7 @@ nodes = ( (312,712,o), (191,598,o), (68,524,c), -(76,520,o), -(88,509,o), -(93,504,c), +(93,504,l), (213,580,o), (334,696,o), (414,826,c) @@ -36,13 +35,11 @@ nodes = ( (615,499,o), (283,337,o), (34,280,c), -(39,275,o), -(47,262,o), -(49,253,c), +(49,253,l), (303,317,o), (637,477,o), (783,705,c), -(765,719,l), +(768,717,l), (759,717,l) ); }, @@ -53,9 +50,7 @@ nodes = ( (400,477,o), (676,321,o), (935,255,c), -(940,263,o), -(948,274,o), -(955,280,c), +(955,280,l), (693,341,o), (420,497,o), (281,682,c) @@ -65,12 +60,12 @@ nodes = ( closed = 1; nodes = ( (208,271,l), -(208,-77,l), -(237,-77,l), +(208,-61,l), +(237,-61,l), (237,241,l), (751,241,l), -(751,-74,l), -(780,-74,l), +(751,-61,l), +(780,-61,l), (780,271,l) ); }, @@ -93,10 +88,10 @@ shapes = ( { closed = 1; nodes = ( -(268,64,l), -(268,-63,l), -(759,-63,l), -(759,64,l) +(268,44,l), +(268,-83,l), +(759,-83,l), +(759,44,l) ); }, { @@ -106,9 +101,7 @@ nodes = ( (290,746,o), (167,636,o), (37,572,c), -(68,547,o), -(121,492,o), -(144,463,c), +(144,463,l), (275,543,o), (412,675,o), (496,819,c) @@ -122,13 +115,11 @@ nodes = ( (611,557,o), (314,430,o), (21,380,c), -(47,348,o), -(78,288,o), -(92,250,c), +(92,250,l), (415,318,o), (729,457,o), (880,704,c), -(775,771,l), +(786,764,l), (751,764,l) ); }, @@ -139,9 +130,7 @@ nodes = ( (356,442,o), (596,312,o), (897,257,c), -(917,297,o), -(958,361,o), -(991,394,c), +(991,394,l), (696,435,o), (446,546,o), (321,701,c) @@ -151,12 +140,12 @@ nodes = ( closed = 1; nodes = ( (194,290,l), -(194,-95,l), -(342,-95,l), +(194,-83,l), +(342,-83,l), (342,159,l), (664,159,l), -(664,-91,l), -(820,-91,l), +(664,-83,l), +(820,-83,l), (820,290,l) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5406.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5406.glyph index 284a3e5..e038cba 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5406.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5406.glyph @@ -1,7 +1,18 @@ { +color = 4; glyphname = uni5406; layers = ( { +guides = ( +{ +angle = 185.1022; +pos = (731,406); +}, +{ +angle = 185.9014; +pos = (874,46); +} +); layerId = m01; shapes = ( { @@ -20,9 +31,7 @@ nodes = ( { closed = 1; nodes = ( -(402,-1,o), -(430,11,o), -(430,11,c), +(430,11,l), (430,12,l), (567,151,o), (708,344,o), @@ -34,18 +43,14 @@ nodes = ( (442,66,o), (409,28,o), (389,23,c), -(394,14,o), -(400,-3,o), -(402,-11,c) +(398,-3,l) ); }, { closed = 1; nodes = ( -(402,-11,l), -(423,-1,o), -(458,3,o), -(874,46,c), +(398,-3,l), +(874,46,l), (871,52,o), (868,65,o), (868,73,c), @@ -56,9 +61,7 @@ nodes = ( { closed = 1; nodes = ( -(407,380,o), -(435,392,o), -(435,392,c), +(435,392,l), (435,393,l), (519,503,o), (602,659,o), @@ -70,18 +73,14 @@ nodes = ( (432,438,o), (412,407,o), (395,404,c), -(400,395,o), -(405,378,o), -(407,371,c) +(405,377,l) ); }, { closed = 1; nodes = ( -(407,371,l), -(424,377,o), -(451,381,o), -(731,406,c), +(405,377,l), +(731,406,l), (734,413,o), (739,425,o), (744,434,c), @@ -95,10 +94,10 @@ nodes = ( (108,727,l), (108,698,l), (297,698,l), -(297,229,l), -(108,229,l), -(108,199,l), -(327,199,l), +(297,189,l), +(108,189,l), +(108,159,l), +(327,159,l), (327,727,l) ); }, @@ -106,8 +105,8 @@ nodes = ( closed = 1; nodes = ( (88,727,l), -(88,96,l), -(118,96,l), +(88,159,l), +(118,159,l), (118,727,l) ); } @@ -116,6 +115,16 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 184.9811; +pos = (726,379); +}, +{ +angle = 190.1669; +pos = (857,34); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -134,9 +143,7 @@ nodes = ( { closed = 1; nodes = ( -(429,-31,o), -(542,23,o), -(542,23,c), +(542,23,l), (542,27,l), (682,175,o), (834,370,o), @@ -148,18 +155,14 @@ nodes = ( (436,127,o), (408,101,o), (369,90,c), -(390,47,o), -(420,-29,o), -(429,-59,c) +(424,-44,l) ); }, { closed = 1; nodes = ( -(429,-59,l), -(470,-38,o), -(528,-25,o), -(857,34,c), +(424,-44,l), +(857,34,l), (845,67,o), (826,126,o), (816,168,c), @@ -170,9 +173,7 @@ nodes = ( { closed = 1; nodes = ( -(429,362,o), -(517,412,o), -(517,412,c), +(517,412,l), (517,417,l), (608,515,o), (705,656,o), @@ -184,18 +185,14 @@ nodes = ( (424,515,o), (405,495,o), (376,487,c), -(394,444,o), -(421,366,o), -(429,335,c) +(424,352,l) ); }, { closed = 1; nodes = ( -(429,336,l), -(459,349,o), -(508,360,o), -(726,379,c), +(424,353,l), +(726,379,l), (738,412,o), (766,477,o), (792,517,c), @@ -209,10 +206,10 @@ nodes = ( (144,773,l), (144,640,l), (250,640,l), -(250,298,l), -(144,298,l), -(144,165,l), -(386,165,l), +(250,268,l), +(144,268,l), +(144,135,l), +(386,135,l), (386,773,l) ); }, @@ -220,8 +217,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(193,80,l), +(59,135,l), +(193,135,l), (193,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5408.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5408.glyph index 8f7a9e2..a3af988 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5408.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5408.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5408; layers = ( { @@ -16,22 +17,22 @@ nodes = ( { closed = 1; nodes = ( -(222,30,l), -(222,0,l), -(778,0,l), -(778,30,l) +(222,-20,l), +(222,-50,l), +(778,-50,l), +(778,-20,l) ); }, { closed = 1; nodes = ( (207,317,l), -(207,-68,l), -(236,-68,l), +(207,-50,l), +(236,-50,l), (236,287,l), (771,287,l), -(771,-65,l), -(801,-65,l), +(771,-50,l), +(801,-50,l), (801,317,l) ); }, @@ -42,9 +43,7 @@ nodes = ( (427,677,o), (247,533,o), (51,456,c), -(59,451,o), -(67,440,o), -(72,434,c), +(72,434,l), (268,514,o), (450,662,o), (550,819,c) @@ -57,9 +56,7 @@ nodes = ( (597,635,o), (745,531,o), (935,437,c), -(940,446,o), -(950,457,o), -(958,463,c), +(958,463,l), (769,552,o), (618,652,o), (514,783,c) @@ -84,22 +81,22 @@ nodes = ( { closed = 1; nodes = ( -(243,77,l), -(243,-57,l), -(748,-57,l), -(748,77,l) +(243,47,l), +(243,-87,l), +(748,-87,l), +(748,47,l) ); }, { closed = 1; nodes = ( (179,334,l), -(179,-93,l), -(328,-93,l), +(179,-87,l), +(328,-87,l), (328,207,l), (687,207,l), -(687,-89,l), -(843,-89,l), +(687,-87,l), +(843,-87,l), (843,334,l) ); }, @@ -110,9 +107,7 @@ nodes = ( (396,704,o), (204,587,o), (22,516,c), -(63,478,o), -(105,423,o), -(129,381,c), +(129,381,l), (317,473,o), (506,611,o), (634,794,c) @@ -125,9 +120,7 @@ nodes = ( (606,543,o), (747,462,o), (887,399,c), -(907,445,o), -(949,499,o), -(986,533,c), +(986,533,l), (851,576,o), (709,645,o), (560,786,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5409.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5409.glyph index 6c66df4..c14d364 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5409.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5409.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5409; layers = ( { @@ -25,10 +26,10 @@ nodes = ( { closed = 1; nodes = ( -(218,4,l), -(218,-25,l), -(796,-25,l), -(796,4,l) +(218,-36,l), +(218,-65,l), +(796,-65,l), +(796,-36,l) ); }, { @@ -44,12 +45,12 @@ nodes = ( closed = 1; nodes = ( (198,283,l), -(198,-85,l), -(228,-85,l), +(198,-65,l), +(228,-65,l), (228,254,l), (781,254,l), -(781,-85,l), -(811,-85,l), +(781,-65,l), +(811,-65,l), (811,283,l) ); } @@ -81,10 +82,10 @@ nodes = ( { closed = 1; nodes = ( -(235,69,l), -(235,-64,l), -(753,-64,l), -(753,69,l) +(235,49,l), +(235,-84,l), +(753,-84,l), +(753,49,l) ); }, { @@ -100,12 +101,12 @@ nodes = ( closed = 1; nodes = ( (150,316,l), -(150,-94,l), -(301,-94,l), +(150,-84,l), +(301,-84,l), (301,187,l), (701,187,l), -(701,-94,l), -(861,-94,l), +(701,-84,l), +(861,-84,l), (861,316,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540A_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540A_.glyph index 15fc254..c2ee9b6 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540A_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540A_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni540A; layers = ( { @@ -53,9 +54,7 @@ nodes = ( (805,46,o), (752,45,o), (679,47,c), -(684,38,o), -(690,29,o), -(692,20,c), +(692,20,l), (775,20,o), (820,20,o), (843,26,cs), @@ -121,9 +120,7 @@ nodes = ( (734,110,o), (676,110,o), (638,112,c), -(656,75,o), -(675,19,o), -(681,-22,c), +(681,-22,l), (754,-22,o), (812,-21,o), (858,-1,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540C_.glyph index 9a2aa9e..841dd370 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540C_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni540C; layers = ( { @@ -17,8 +18,8 @@ nodes = ( closed = 1; nodes = ( (301,443,l), -(301,64,l), -(330,64,l), +(301,84,l), +(330,84,l), (330,443,l) ); }, @@ -28,10 +29,10 @@ nodes = ( (316,443,l), (316,414,l), (670,414,l), -(670,173,l), -(316,173,l), -(316,143,l), -(699,143,l), +(670,114,l), +(316,114,l), +(316,84,l), +(699,84,l), (699,443,l) ); }, @@ -57,9 +58,7 @@ nodes = ( (830,-44,o), (771,-45,o), (698,-43,c), -(704,-52,o), -(709,-64,o), -(712,-71,c), +(712,-71,l), (800,-72,o), (846,-71,o), (868,-66,cs), @@ -89,8 +88,8 @@ nodes = ( closed = 1; nodes = ( (295,440,l), -(295,30,l), -(428,30,l), +(295,93,l), +(428,93,l), (428,440,l) ); }, @@ -129,9 +128,7 @@ nodes = ( (751,45,o), (693,45,o), (646,48,c), -(667,11,o), -(689,-56,o), -(694,-96,c), +(694,-96,l), (777,-96,o), (835,-92,o), (878,-68,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540D_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540D_.glyph index cdee6c1..9e57e3e 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540D_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540D_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni540D; layers = ( { @@ -7,10 +8,10 @@ shapes = ( { closed = 1; nodes = ( -(279,21,l), -(279,-9,l), -(826,-9,l), -(826,21,l) +(279,-29,l), +(279,-59,l), +(826,-59,l), +(826,-29,l) ); }, { @@ -29,9 +30,7 @@ nodes = ( (373,734,o), (254,613,o), (92,529,c), -(99,524,o), -(109,516,o), -(114,509,c), +(114,509,l), (279,597,o), (398,719,o), (466,825,c) @@ -45,13 +44,11 @@ nodes = ( (669,477,o), (333,312,o), (66,256,c), -(72,249,o), -(80,236,o), -(82,229,c), +(82,229,l), (352,290,o), (691,456,o), (832,718,c), -(815,730,l), +(817,728,l), (809,728,l) ); }, @@ -72,8 +69,8 @@ nodes = ( closed = 1; nodes = ( (811,319,l), -(811,-69,l), -(840,-69,l), +(811,-59,l), +(840,-59,l), (840,319,l) ); }, @@ -83,8 +80,8 @@ nodes = ( (295,319,l), (294,319,l), (266,288,l), -(266,-70,l), -(295,-70,l), +(266,-59,l), +(295,-59,l), (295,289,l), (823,289,l), (823,319,l) @@ -100,10 +97,10 @@ shapes = ( { closed = 1; nodes = ( -(331,75,l), -(331,-56,l), -(759,-56,l), -(759,75,l) +(331,45,l), +(331,-86,l), +(759,-86,l), +(759,45,l) ); }, { @@ -122,9 +119,7 @@ nodes = ( (307,768,o), (199,673,o), (34,605,c), -(67,580,o), -(113,524,o), -(134,488,c), +(134,488,l), (315,579,o), (437,690,o), (532,827,c) @@ -138,13 +133,11 @@ nodes = ( (610,515,o), (328,362,o), (17,300,c), -(44,268,o), -(77,206,o), -(92,166,c), +(92,166,l), (429,247,o), (727,416,o), (864,706,c), -(762,765,l), +(780,758,l), (738,758,l) ); }, @@ -165,8 +158,8 @@ nodes = ( closed = 1; nodes = ( (713,373,l), -(713,-95,l), -(864,-95,l), +(713,-86,l), +(864,-86,l), (864,373,l) ); }, @@ -176,8 +169,8 @@ nodes = ( (376,373,l), (339,373,l), (230,268,l), -(230,-94,l), -(376,-94,l), +(230,-86,l), +(376,-86,l), (376,242,l), (749,242,l), (749,373,l) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540E_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540E_.glyph index 39d7b5b..3f519ad 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540E_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540E_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni540E; layers = ( { @@ -16,10 +17,10 @@ nodes = ( { closed = 1; nodes = ( -(325,15,l), -(325,-15,l), -(850,-15,l), -(850,15,l) +(325,-22,l), +(325,-52,l), +(850,-52,l), +(850,-22,l) ); }, { @@ -41,12 +42,12 @@ nodes = ( closed = 1; nodes = ( (307,346,l), -(307,-72,l), -(336,-72,l), +(307,-52,l), +(336,-52,l), (336,317,l), (831,317,l), -(831,-72,l), -(861,-72,l), +(831,-52,l), +(861,-52,l), (861,346,l) ); }, @@ -58,9 +59,7 @@ nodes = ( (163,332,o), (151,112,o), (44,-51,c), -(52,-55,o), -(63,-65,o), -(68,-72,c), +(68,-72,l), (178,97,o), (192,328,o), (192,492,cs), @@ -86,10 +85,10 @@ nodes = ( { closed = 1; nodes = ( -(385,82,l), -(385,-52,l), -(809,-52,l), -(809,82,l) +(385,62,l), +(385,-72,l), +(809,-72,l), +(809,62,l) ); }, { @@ -111,12 +110,12 @@ nodes = ( closed = 1; nodes = ( (319,350,l), -(319,-94,l), -(466,-94,l), +(319,-72,l), +(466,-72,l), (466,216,l), (757,216,l), -(757,-90,l), -(912,-90,l), +(757,-72,l), +(912,-72,l), (912,350,l) ); }, @@ -128,9 +127,7 @@ nodes = ( (131,342,o), (123,137,o), (14,2,c), -(47,-16,o), -(111,-68,o), -(136,-97,c), +(136,-97,l), (261,55,o), (283,318,o), (283,488,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540F_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540F_.glyph index 9f947f4..e9be378 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540F_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni540F_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni540F; layers = ( { @@ -21,9 +22,7 @@ nodes = ( (484,210,o), (474,36,o), (53,-49,c), -(58,-57,o), -(65,-68,o), -(69,-75,c), +(69,-75,l), (496,16,o), (514,198,o), (514,396,cs), @@ -55,9 +54,7 @@ nodes = ( (325,22,o), (551,-47,o), (949,-72,c), -(951,-63,o), -(957,-50,o), -(963,-43,c), +(963,-43,l), (568,-20,o), (347,41,o), (236,278,c) @@ -87,9 +84,7 @@ nodes = ( (428,202,o), (387,75,o), (32,32,c), -(62,0,o), -(102,-63,o), -(118,-95,c), +(118,-95,l), (480,-24,o), (575,154,o), (575,372,cs), @@ -121,9 +116,7 @@ nodes = ( (285,-38,o), (543,-86,o), (918,-99,c), -(926,-49,o), -(955,15,o), -(982,50,c), +(982,50,l), (624,47,o), (403,68,o), (267,278,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5410.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5410.glyph index 560ec30..5c0af17 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5410.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5410.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5410; layers = ( { @@ -37,10 +38,10 @@ nodes = ( (99,734,l), (99,705,l), (285,705,l), -(285,199,l), -(99,199,l), -(99,170,l), -(315,170,l), +(285,159,l), +(99,159,l), +(99,130,l), +(315,130,l), (315,734,l) ); }, @@ -48,8 +49,8 @@ nodes = ( closed = 1; nodes = ( (84,734,l), -(84,94,l), -(114,94,l), +(84,130,l), +(114,130,l), (114,734,l) ); } @@ -93,10 +94,10 @@ nodes = ( (104,771,l), (104,631,l), (252,631,l), -(252,301,l), -(104,301,l), -(104,160,l), -(387,160,l), +(252,281,l), +(104,281,l), +(104,140,l), +(387,140,l), (387,771,l) ); }, @@ -104,8 +105,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(191,78,l), +(59,140,l), +(191,140,l), (191,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5411.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5411.glyph index ee56578..fc52720 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5411.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5411.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5411; layers = ( { @@ -26,9 +27,7 @@ nodes = ( (819,-38,o), (749,-39,o), (663,-36,c), -(669,-47,o), -(673,-61,o), -(676,-70,c), +(676,-70,l), (769,-70,o), (830,-70,o), (859,-65,cs), @@ -55,8 +54,8 @@ nodes = ( closed = 1; nodes = ( (305,455,l), -(305,62,l), -(334,62,l), +(305,96,l), +(334,96,l), (334,455,l) ); }, @@ -66,10 +65,10 @@ nodes = ( (322,455,l), (322,425,l), (667,425,l), -(667,166,l), -(322,166,l), -(322,136,l), -(696,136,l), +(667,126,l), +(322,126,l), +(322,96,l), +(696,96,l), (696,455,l) ); } @@ -102,9 +101,7 @@ nodes = ( (733,46,o), (665,46,o), (614,50,c), -(634,12,o), -(656,-55,o), -(661,-96,c), +(661,-96,l), (751,-96,o), (815,-93,o), (862,-70,cs), @@ -131,8 +128,8 @@ nodes = ( closed = 1; nodes = ( (303,471,l), -(303,52,l), -(434,52,l), +(303,111,l), +(434,111,l), (434,471,l) ); }, @@ -142,10 +139,10 @@ nodes = ( (358,471,l), (358,345,l), (563,345,l), -(563,247,l), -(358,247,l), -(358,121,l), -(696,121,l), +(563,237,l), +(358,237,l), +(358,111,l), +(696,111,l), (696,471,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5412.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5412.glyph index cf902bf..b0bdbf6 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5412.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5412.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5412; layers = ( { @@ -18,9 +19,7 @@ nodes = ( (942,-43,o), (952,-2,o), (957,135,c), -(948,137,o), -(936,143,o), -(927,150,c), +(927,150,l), (923,18,o), (917,-14,o), (874,-14,cs), @@ -40,9 +39,7 @@ nodes = ( (735,760,o), (536,713,o), (371,681,c), -(375,674,o), -(379,664,o), -(381,657,c), +(381,657,l), (551,688,o), (748,734,o), (862,788,c) @@ -63,10 +60,10 @@ nodes = ( (102,734,l), (102,705,l), (288,705,l), -(288,199,l), -(102,199,l), -(102,170,l), -(318,170,l), +(288,169,l), +(102,169,l), +(102,140,l), +(318,140,l), (318,734,l) ); }, @@ -74,8 +71,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,140,l), +(117,140,l), (117,734,l) ); } @@ -100,9 +97,7 @@ nodes = ( (934,-80,o), (969,-18,o), (983,152,c), -(944,161,o), -(884,187,o), -(852,212,c), +(852,212,l), (848,86,o), (843,57,o), (818,57,cs), @@ -122,9 +117,7 @@ nodes = ( (705,809,o), (549,775,o), (402,756,c), -(419,725,o), -(440,670,o), -(446,637,c), +(446,637,l), (603,654,o), (784,687,o), (925,739,c) @@ -145,10 +138,10 @@ nodes = ( (128,771,l), (128,631,l), (252,631,l), -(252,257,l), -(128,257,l), -(128,117,l), -(384,117,l), +(252,217,l), +(128,217,l), +(128,77,l), +(384,77,l), (384,771,l) ); }, @@ -156,8 +149,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,46,l), -(192,46,l), +(59,77,l), +(192,77,l), (192,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5413.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5413.glyph index 57f1e22..7a919c7 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5413.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5413.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5413; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (84,738,l), (84,709,l), (290,709,l), -(290,228,l), -(84,228,l), -(84,198,l), -(320,198,l), +(290,163,l), +(84,163,l), +(84,133,l), +(320,133,l), (320,738,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (66,738,l), -(66,103,l), -(95,103,l), +(66,133,l), +(95,133,l), (95,738,l) ); }, @@ -70,10 +71,10 @@ nodes = ( (117,789,l), (117,642,l), (244,642,l), -(244,300,l), -(117,300,l), -(117,153,l), -(384,153,l), +(244,233,l), +(117,233,l), +(117,86,l), +(384,86,l), (384,789,l) ); }, @@ -81,8 +82,8 @@ nodes = ( closed = 1; nodes = ( (40,789,l), -(40,46,l), -(178,46,l), +(40,86,l), +(178,86,l), (178,789,l) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5415.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5415.glyph index b86c343..e3dba06 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5415.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5415.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5415; layers = ( { @@ -8,12 +9,12 @@ shapes = ( closed = 1; nodes = ( (139,306,l), -(139,-71,l), -(169,-71,l), +(139,-57,l), +(169,-57,l), (169,277,l), (833,277,l), -(833,-67,l), -(863,-67,l), +(833,-57,l), +(863,-57,l), (863,306,l) ); }, @@ -38,10 +39,10 @@ nodes = ( { closed = 1; nodes = ( -(152,8,l), -(152,-21,l), -(850,-21,l), -(850,8,l) +(152,-28,l), +(152,-57,l), +(850,-57,l), +(850,-28,l) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5416.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5416.glyph index 2371877..96508bf 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5416.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5416.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5416; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (97,746,l), (97,717,l), (316,717,l), -(316,199,l), -(97,199,l), -(97,170,l), -(345,170,l), +(316,153,l), +(97,153,l), +(97,124,l), +(345,124,l), (345,746,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (87,746,l), -(87,84,l), -(117,84,l), +(87,124,l), +(117,124,l), (117,746,l) ); }, @@ -74,10 +75,10 @@ nodes = ( (124,768,l), (124,628,l), (272,628,l), -(272,298,l), -(124,298,l), -(124,157,l), -(403,157,l), +(272,236,l), +(124,236,l), +(124,95,l), +(403,95,l), (403,768,l) ); }, @@ -85,8 +86,8 @@ nodes = ( closed = 1; nodes = ( (59,768,l), -(59,75,l), -(191,75,l), +(59,95,l), +(191,95,l), (191,768,l) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5417.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5417.glyph index bf77f6e..d5052f2 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5417.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5417.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5417; layers = ( { @@ -8,9 +9,8 @@ shapes = ( closed = 1; nodes = ( (900,387,l), -(900,380,ls), -(876,108,o), -(852,4,o), +(884,197,o), +(865,16,o), (819,-26,c), (811,-35,o), (800,-37,o), @@ -18,20 +18,15 @@ nodes = ( (763,-36,o), (712,-36,o), (658,-30,c), -(663,-39,o), -(666,-52,o), -(667,-61,c), +(667,-61,l), (716,-65,o), (763,-65,o), (786,-65,cs), (814,-65,o), (829,-60,o), (844,-45,cs), -(880,-10,o), -(904,91,o), -(929,367,cs), -(930,374,o), -(930,387,o), +(897,7,o), +(914,204,o), (930,387,c) ); }, @@ -48,13 +43,9 @@ nodes = ( closed = 1; nodes = ( (470,648,l), -(463,559,o), -(450,432,o), -(438,359,c), +(438,359,l), (467,359,l), -(477,430,o), -(490,554,o), -(497,645,c) +(497,645,l) ); }, { @@ -72,10 +63,10 @@ nodes = ( (102,727,l), (102,698,l), (282,698,l), -(282,229,l), -(102,229,l), -(102,199,l), -(312,199,l), +(282,146,l), +(102,146,l), +(102,116,l), +(312,116,l), (312,727,l) ); }, @@ -83,8 +74,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,116,l), +(114,116,l), (114,727,l) ); }, @@ -101,15 +92,11 @@ nodes = ( closed = 1; nodes = ( (806,764,l), -(806,758,ls), -(798,671,o), -(778,486,o), -(761,366,c), +(806,758,l), +(761,366,l), (789,364,l), -(807,485,o), -(826,661,o), -(835,763,c), -(815,767,l), +(835,764,l), +(825,764,l), (809,764,l) ); } @@ -124,9 +111,8 @@ shapes = ( closed = 1; nodes = ( (816,424,l), -(816,402,l), -(802,167,o), -(781,70,o), +(809,292,o), +(799,89,o), (759,47,cs), (748,35,o), (738,33,o), @@ -134,20 +120,15 @@ nodes = ( (704,33,o), (669,33,o), (631,37,c), -(652,2,o), -(667,-53,o), -(669,-92,c), +(669,-92,l), (717,-93,o), (761,-92,o), (790,-88,cs), (824,-83,o), (850,-72,o), (876,-41,cs), -(911,-2,o), -(932,108,o), -(951,369,cs), -(953,386,o), -(955,424,o), +(922,10,o), +(937,181,o), (955,424,c) ); }, @@ -164,13 +145,9 @@ nodes = ( closed = 1; nodes = ( (459,653,l), -(452,539,o), -(437,394,o), -(422,302,c), +(422,302,l), (558,302,l), -(571,389,o), -(586,531,o), -(595,645,c) +(595,645,l) ); }, { @@ -188,10 +165,10 @@ nodes = ( (131,773,l), (131,640,l), (252,640,l), -(252,298,l), -(131,298,l), -(131,165,l), -(380,165,l), +(252,283,l), +(131,283,l), +(131,150,l), +(380,150,l), (380,773,l) ); }, @@ -199,8 +176,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(190,80,l), +(59,150,l), +(190,150,l), (190,773,l) ); }, @@ -217,15 +194,11 @@ nodes = ( closed = 1; nodes = ( (748,808,l), -(748,794,ls), -(742,689,o), -(724,495,o), -(704,347,c), +(748,794,l), +(704,347,l), (841,336,l), -(860,483,o), -(879,660,o), -(888,804,c), -(785,813,l), +(888,808,l), +(816,808,l), (763,808,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni541B_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni541B_.glyph index 3b1a25a..ad12420 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni541B_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni541B_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni541B; layers = ( { @@ -7,22 +8,22 @@ shapes = ( { closed = 1; nodes = ( -(285,15,l), -(285,-15,l), -(842,-15,l), -(842,15,l) +(285,-25,l), +(285,-55,l), +(842,-55,l), +(842,-25,l) ); }, { closed = 1; nodes = ( (270,271,l), -(270,-73,l), -(299,-73,l), +(270,-55,l), +(299,-55,l), (299,241,l), (827,241,l), -(827,-73,l), -(857,-73,l), +(827,-55,l), +(857,-55,l), (857,271,l) ); }, @@ -55,9 +56,7 @@ nodes = ( (399,495,o), (295,250,o), (46,111,c), -(52,105,o), -(61,94,o), -(66,87,c), +(66,87,l), (319,230,o), (425,480,o), (478,760,c) @@ -73,22 +72,22 @@ shapes = ( { closed = 1; nodes = ( -(311,64,l), -(311,-62,l), -(789,-62,l), -(789,64,l) +(311,44,l), +(311,-82,l), +(789,-82,l), +(789,44,l) ); }, { closed = 1; nodes = ( (255,285,l), -(255,-95,l), -(403,-95,l), +(255,-82,l), +(403,-82,l), (403,159,l), (721,159,l), -(721,-92,l), -(877,-92,l), +(721,-82,l), +(877,-82,l), (877,285,l) ); }, @@ -121,9 +120,7 @@ nodes = ( (354,524,o), (261,279,o), (18,163,c), -(46,135,o), -(89,80,o), -(109,47,c), +(109,47,l), (378,187,o), (485,459,o), (543,748,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni541D_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni541D_.glyph index 46e1613..cf97558 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni541D_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni541D_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni541D; layers = ( { @@ -7,22 +8,22 @@ shapes = ( { closed = 1; nodes = ( -(217,10,l), -(217,-19,l), -(800,-19,l), -(800,10,l) +(217,-30,l), +(217,-59,l), +(800,-59,l), +(800,-30,l) ); }, { closed = 1; nodes = ( (200,269,l), -(200,-70,l), -(230,-70,l), +(200,-59,l), +(230,-59,l), (230,239,l), (783,239,l), -(783,-70,l), -(813,-70,l), +(783,-59,l), +(813,-59,l), (813,269,l) ); }, @@ -42,9 +43,7 @@ nodes = ( (606,489,o), (343,371,o), (37,309,c), -(44,302,o), -(55,289,o), -(59,282,c), +(59,282,l), (360,352,o), (626,468,o), (764,693,c) @@ -57,9 +56,7 @@ nodes = ( (368,484,o), (637,347,o), (934,296,c), -(938,305,o), -(945,316,o), -(952,322,c), +(952,322,l), (653,369,o), (387,504,o), (262,704,c) @@ -88,22 +85,22 @@ shapes = ( { closed = 1; nodes = ( -(259,74,l), -(259,-55,l), -(737,-55,l), -(737,74,l) +(259,44,l), +(259,-85,l), +(737,-85,l), +(737,44,l) ); }, { closed = 1; nodes = ( (161,302,l), -(161,-95,l), -(304,-95,l), +(161,-85,l), +(304,-85,l), (304,173,l), (704,173,l), -(704,-95,l), -(854,-95,l), +(704,-85,l), +(854,-85,l), (854,302,l) ); }, @@ -123,9 +120,7 @@ nodes = ( (582,556,o), (310,463,o), (13,423,c), -(40,392,o), -(81,324,o), -(97,290,c), +(97,290,l), (396,346,o), (685,455,o), (853,659,c) @@ -138,9 +133,7 @@ nodes = ( (335,454,o), (579,337,o), (906,293,c), -(924,330,o), -(960,389,o), -(989,420,c), +(989,420,l), (672,452,o), (420,552,o), (298,714,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni541E_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni541E_.glyph index d4bf9b0..a7ba422 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni541E_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni541E_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni541E; layers = ( { @@ -7,22 +8,22 @@ shapes = ( { closed = 1; nodes = ( -(240,9,l), (240,-20,l), -(766,-20,l), -(766,9,l) +(240,-49,l), +(766,-49,l), +(766,-20,l) ); }, { closed = 1; nodes = ( (223,299,l), -(223,-69,l), -(252,-69,l), +(223,-49,l), +(252,-49,l), (252,270,l), (751,270,l), -(751,-69,l), -(780,-69,l), +(751,-49,l), +(780,-49,l), (780,299,l) ); }, @@ -51,9 +52,7 @@ nodes = ( (415,528,o), (286,324,o), (46,209,c), -(53,203,o), -(62,192,o), -(67,186,c), +(67,186,l), (310,305,o), (439,513,o), (504,754,c) @@ -66,9 +65,7 @@ nodes = ( (645,385,o), (786,268,o), (941,206,c), -(943,215,o), -(950,227,o), -(956,233,c), +(956,233,l), (805,287,o), (667,403,o), (604,534,c) @@ -84,22 +81,22 @@ shapes = ( { closed = 1; nodes = ( -(278,77,l), -(278,-56,l), -(720,-56,l), -(720,77,l) +(278,53,l), +(278,-80,l), +(720,-80,l), +(720,53,l) ); }, { closed = 1; nodes = ( (180,341,l), -(180,-95,l), -(331,-95,l), +(180,-80,l), +(331,-80,l), (331,208,l), (667,208,l), -(667,-90,l), -(826,-90,l), +(667,-80,l), +(826,-80,l), (826,341,l) ); }, @@ -128,9 +125,7 @@ nodes = ( (351,547,o), (231,362,o), (15,276,c), -(39,244,o), -(75,183,o), -(91,147,c), +(91,147,l), (341,256,o), (477,467,o), (554,705,c) @@ -143,9 +138,7 @@ nodes = ( (626,338,o), (759,217,o), (931,151,c), -(941,194,o), -(965,263,o), -(988,301,c), +(988,301,l), (841,342,o), (723,434,o), (662,546,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni541F_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni541F_.glyph index 828574b..f04bd90 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni541F_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni541F_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni541F; layers = ( { @@ -18,14 +19,10 @@ closed = 1; nodes = ( (843,338,l), (843,332,l), -(797,245,o), -(700,68,o), -(624,-56,c), +(624,-56,l), (654,-65,l), -(728,59,o), -(822,231,o), -(875,331,c), -(855,341,l), +(879,338,l), +(861,338,l), (849,338,l) ); }, @@ -36,9 +33,7 @@ nodes = ( (583,709,o), (471,574,o), (336,479,c), -(344,474,o), -(356,467,o), -(362,461,c), +(362,461,l), (496,559,o), (607,693,o), (674,822,c) @@ -51,9 +46,7 @@ nodes = ( (689,694,o), (817,548,o), (925,467,c), -(931,474,o), -(941,485,o), -(949,491,c), +(949,491,l), (838,569,o), (708,713,o), (650,800,c) @@ -78,10 +71,10 @@ nodes = ( (95,727,l), (95,698,l), (279,698,l), -(279,229,l), -(95,229,l), -(95,199,l), -(308,199,l), +(279,176,l), +(95,176,l), +(95,146,l), +(308,146,l), (308,727,l) ); }, @@ -89,8 +82,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,146,l), +(114,146,l), (114,727,l) ); } @@ -115,14 +108,10 @@ closed = 1; nodes = ( (780,387,l), (780,372,l), -(738,272,o), -(649,90,o), -(574,-49,c), +(574,-49,l), (714,-88,l), -(789,53,o), -(876,223,o), -(934,360,c), -(824,393,l), +(948,387,l), +(844,387,l), (800,387,l) ); }, @@ -133,9 +122,7 @@ nodes = ( (570,741,o), (452,601,o), (329,522,c), -(363,496,o), -(416,438,o), -(439,405,c), +(439,405,l), (570,510,o), (672,662,o), (748,826,c) @@ -148,9 +135,7 @@ nodes = ( (673,652,o), (780,500,o), (888,416,c), -(911,451,o), -(961,507,o), -(992,533,c), +(992,533,l), (878,599,o), (757,731,o), (703,823,c) @@ -175,10 +160,10 @@ nodes = ( (147,774,l), (147,640,l), (232,640,l), -(232,298,l), -(147,298,l), -(147,164,l), -(355,164,l), +(232,258,l), +(147,258,l), +(147,124,l), +(355,124,l), (355,774,l) ); }, @@ -186,8 +171,8 @@ nodes = ( closed = 1; nodes = ( (59,774,l), -(59,81,l), -(181,81,l), +(59,124,l), +(181,124,l), (181,774,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5420.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5420.glyph index d2c6ea7..e5bf3f2 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5420.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5420.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5420; layers = ( { @@ -34,9 +35,7 @@ nodes = ( (626,361,o), (621,121,o), (282,-48,c), -(289,-54,o), -(298,-65,o), -(303,-70,c), +(303,-70,l), (644,104,o), (656,353,o), (656,546,cs), @@ -50,9 +49,7 @@ nodes = ( (670,217,o), (756,16,o), (945,-71,c), -(950,-64,o), -(959,-54,o), -(966,-48,c), +(966,-48,l), (779,31,o), (694,232,o), (659,501,c) @@ -64,10 +61,10 @@ nodes = ( (100,724,l), (100,695,l), (330,695,l), -(330,229,l), -(100,229,l), -(100,199,l), -(360,199,l), +(330,172,l), +(100,172,l), +(100,142,l), +(360,142,l), (360,724,l) ); }, @@ -75,8 +72,8 @@ nodes = ( closed = 1; nodes = ( (83,724,l), -(83,102,l), -(112,102,l), +(83,142,l), +(112,142,l), (112,724,l) ); } @@ -117,9 +114,7 @@ nodes = ( (578,368,o), (559,151,o), (302,14,c), -(339,-13,o), -(389,-66,o), -(411,-97,c), +(411,-97,l), (684,70,o), (727,328,o), (727,529,cs), @@ -133,9 +128,7 @@ nodes = ( (647,206,o), (715,7,o), (891,-98,c), -(912,-59,o), -(956,0,o), -(988,28,c), +(988,28,l), (830,106,o), (760,278,o), (727,483,c) @@ -147,10 +140,10 @@ nodes = ( (149,757,l), (149,623,l), (267,623,l), -(267,293,l), -(149,293,l), -(149,159,l), -(406,159,l), +(267,273,l), +(149,273,l), +(149,139,l), +(406,139,l), (406,757,l) ); }, @@ -158,8 +151,8 @@ nodes = ( closed = 1; nodes = ( (63,757,l), -(63,59,l), -(198,59,l), +(63,139,l), +(198,139,l), (198,757,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5421.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5421.glyph index b142e5d..3736a0e 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5421.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5421.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni5421; layers = ( { +guides = ( +{ +angle = 204.8142; +pos = (619,66); +} +); layerId = m01; shapes = ( { @@ -10,10 +17,10 @@ nodes = ( (102,734,l), (102,705,l), (282,705,l), -(282,199,l), -(102,199,l), -(102,170,l), -(312,170,l), +(282,163,l), +(102,163,l), +(102,134,l), +(312,134,l), (312,734,l) ); }, @@ -21,8 +28,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,134,l), +(117,134,l), (117,734,l) ); }, @@ -49,9 +56,7 @@ nodes = ( (937,-40,o), (945,-7,o), (949,96,c), -(939,98,o), -(928,104,o), -(919,111,c), +(919,111,l), (917,14,o), (912,-11,o), (884,-11,cs), @@ -80,13 +85,9 @@ nodes = ( { closed = 1; nodes = ( -(398,-45,l), -(412,-32,o), -(433,-20,o), -(619,66,c), -(617,72,o), -(614,83,o), -(613,91,c), +(394,-38,l), +(619,66,l), +(613,91,l), (417,5,l), (398,-16,l) ); @@ -94,18 +95,17 @@ nodes = ( { closed = 1; nodes = ( -(398,-31,o), -(440,2,o), -(440,2,c), +(411,-25,ls), +(431,-10,o), +(440,18,o), +(440,43,cs), (440,822,l), (411,822,l), (411,48,ls), (411,8,o), (391,-10,o), (379,-16,c), -(386,-24,o), -(394,-37,o), -(398,-45,c) +(394,-38,l) ); } ); @@ -113,6 +113,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 203.8658; +pos = (640,23); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -121,10 +127,10 @@ nodes = ( (106,771,l), (106,631,l), (242,631,l), -(242,301,l), -(106,301,l), -(106,160,l), -(362,160,l), +(242,251,l), +(106,251,l), +(106,110,l), +(362,110,l), (362,771,l) ); }, @@ -132,8 +138,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(179,78,l), +(59,110,l), +(179,110,l), (179,771,l) ); }, @@ -160,9 +166,7 @@ nodes = ( (933,-81,o), (964,-8,o), (975,169,c), -(935,178,o), -(876,206,o), -(843,233,c), +(843,233,l), (840,97,o), (838,58,o), (825,58,cs), @@ -191,13 +195,9 @@ nodes = ( { closed = 1; nodes = ( -(417,-94,l), -(438,-73,o), -(475,-50,o), -(640,23,c), -(630,55,o), -(621,115,o), -(618,156,c), +(409,-79,l), +(640,23,l), +(618,156,l), (437,86,l), (393,42,l) ); @@ -205,18 +205,17 @@ nodes = ( { closed = 1; nodes = ( -(417,-39,o), -(541,30,o), -(541,30,c), +(469,-40,ls), +(519,-8,o), +(541,62,o), +(541,121,cs), (541,832,l), (396,832,l), (396,123,ls), (396,78,o), (376,48,o), (354,32,c), -(376,5,o), -(407,-57,o), -(417,-94,c) +(409,-79,l) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5423.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5423.glyph index 2029c5a..a255f0f 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5423.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5423.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5423; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (100,674,l), (100,645,l), (275,645,l), -(275,200,l), -(100,200,l), -(100,171,l), -(304,171,l), +(275,160,l), +(100,160,l), +(100,131,l), +(304,131,l), (304,674,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (84,674,l), -(84,66,l), -(114,66,l), +(84,131,l), +(114,131,l), (114,674,l) ); }, @@ -40,9 +41,7 @@ nodes = ( (844,-54,o), (853,-12,o), (858,138,c), -(848,140,o), -(837,146,o), -(828,153,c), +(828,153,l), (824,6,o), (819,-24,o), (777,-24,cs), @@ -118,8 +117,8 @@ nodes = ( closed = 1; nodes = ( (60,711,l), -(60,49,l), -(186,49,l), +(60,135,l), +(186,135,l), (186,711,l) ); }, @@ -137,9 +136,7 @@ nodes = ( (884,-82,o), (918,-26,o), (931,146,c), -(895,155,o), -(838,178,o), -(808,201,c), +(808,201,l), (804,71,o), (798,45,o), (769,45,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5426.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5426.glyph index 4362b25..5dda1be 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5426.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5426.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5426; layers = ( { @@ -7,22 +8,22 @@ shapes = ( { closed = 1; nodes = ( -(204,19,l), -(204,-11,l), -(805,-11,l), -(805,19,l) +(204,-31,l), +(204,-61,l), +(805,-61,l), +(805,-31,l) ); }, { closed = 1; nodes = ( (189,289,l), -(189,-71,l), -(219,-71,l), +(189,-61,l), +(219,-61,l), (219,260,l), (787,260,l), -(787,-67,l), -(817,-67,l), +(787,-61,l), +(817,-61,l), (817,289,l) ); }, @@ -42,9 +43,7 @@ nodes = ( (454,604,o), (248,484,o), (51,415,c), -(58,408,o), -(68,394,o), -(72,387,c), +(72,387,l), (267,465,o), (474,583,o), (599,737,c) @@ -83,22 +82,22 @@ shapes = ( { closed = 1; nodes = ( -(242,61,l), -(242,-64,l), -(751,-64,l), -(751,61,l) +(242,51,l), +(242,-74,l), +(751,-74,l), +(751,51,l) ); }, { closed = 1; nodes = ( (157,312,l), -(157,-94,l), -(308,-94,l), +(157,-74,l), +(308,-74,l), (308,187,l), (693,187,l), -(693,-94,l), -(853,-94,l), +(693,-74,l), +(853,-74,l), (853,312,l) ); }, @@ -118,9 +117,7 @@ nodes = ( (404,626,o), (211,521,o), (11,465,c), -(42,435,o), -(92,368,o), -(114,334,c), +(114,334,l), (316,407,o), (524,534,o), (651,700,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5427.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5427.glyph index 4db77bf..24575dd 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5427.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5427.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5427; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (105,727,l), (105,698,l), (294,698,l), -(294,229,l), -(105,229,l), -(105,199,l), -(324,199,l), +(294,169,l), +(105,169,l), +(105,139,l), +(324,139,l), (324,727,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (90,727,l), -(90,96,l), -(120,96,l), +(90,139,l), +(120,139,l), (120,727,l) ); }, @@ -40,9 +41,7 @@ nodes = ( (934,-48,o), (947,-5,o), (955,128,c), -(946,130,o), -(933,134,o), -(924,141,c), +(924,141,l), (917,15,o), (908,-18,o), (845,-18,cs), @@ -61,26 +60,26 @@ nodes = ( (453,761,l), (453,731,l), (887,731,l), -(887,263,l), -(917,263,l), +(887,313,l), +(917,313,l), (917,761,l) ); }, { closed = 1; nodes = ( -(451,361,l), -(451,332,l), -(897,332,l), -(897,361,l) +(451,342,l), +(451,313,l), +(897,313,l), +(897,342,l) ); }, { closed = 1; nodes = ( (660,754,l), -(660,348,l), -(689,348,l), +(660,329,l), +(689,329,l), (689,754,l) ); } @@ -97,10 +96,10 @@ nodes = ( (147,773,l), (147,640,l), (244,640,l), -(244,298,l), -(147,298,l), -(147,165,l), -(377,165,l), +(244,233,l), +(147,233,l), +(147,100,l), +(377,100,l), (377,773,l) ); }, @@ -108,8 +107,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(190,80,l), +(59,100,l), +(190,100,l), (190,773,l) ); }, @@ -127,9 +126,7 @@ nodes = ( (925,-81,o), (967,-30,o), (985,114,c), -(945,122,o), -(887,146,o), -(855,169,c), +(855,169,l), (846,73,o), (836,52,o), (787,52,cs), @@ -148,26 +145,26 @@ nodes = ( (494,798,l), (494,665,l), (801,665,l), -(801,229,l), -(942,229,l), +(801,265,l), +(942,265,l), (942,798,l) ); }, { closed = 1; nodes = ( -(490,416,l), -(490,285,l), -(855,285,l), -(855,416,l) +(490,396,l), +(490,265,l), +(855,265,l), +(855,396,l) ); }, { closed = 1; nodes = ( (616,744,l), -(616,379,l), -(747,379,l), +(616,359,l), +(747,359,l), (747,744,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5428.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5428.glyph index 186ba4e..ab08013 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5428.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5428.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5428; layers = ( { @@ -8,8 +9,8 @@ shapes = ( closed = 1; nodes = ( (841,536,l), -(841,131,l), -(870,131,l), +(841,156,l), +(870,156,l), (870,536,l) ); }, @@ -36,9 +37,7 @@ nodes = ( (945,-13,o), (950,38,o), (950,77,c), -(940,80,o), -(928,84,o), -(919,91,c), +(919,91,l), (918,42,o), (916,7,o), (912,-10,cs), @@ -73,10 +72,10 @@ nodes = ( closed = 1; nodes = ( (398,535,l), -(398,206,l), -(865,206,l), -(865,235,l), -(427,235,l), +(398,156,l), +(865,156,l), +(865,185,l), +(427,185,l), (427,535,l) ); }, @@ -86,10 +85,10 @@ nodes = ( (95,727,l), (95,698,l), (273,698,l), -(273,229,l), -(95,229,l), -(95,199,l), -(302,199,l), +(273,179,l), +(95,179,l), +(95,149,l), +(302,149,l), (302,727,l) ); }, @@ -97,8 +96,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,149,l), +(114,149,l), (114,727,l) ); } @@ -113,8 +112,8 @@ shapes = ( closed = 1; nodes = ( (800,559,l), -(800,145,l), -(939,145,l), +(800,159,l), +(939,159,l), (939,559,l) ); }, @@ -141,9 +140,7 @@ nodes = ( (968,-3,o), (978,42,o), (980,84,c), -(934,98,o), -(884,123,o), -(851,151,c), +(851,151,l), (850,113,o), (847,82,o), (844,69,cs), @@ -178,10 +175,10 @@ nodes = ( closed = 1; nodes = ( (400,559,l), -(400,169,l), -(896,169,l), -(896,302,l), -(537,302,l), +(400,159,l), +(896,159,l), +(896,292,l), +(537,292,l), (537,559,l) ); }, @@ -191,10 +188,10 @@ nodes = ( (133,773,l), (133,640,l), (230,640,l), -(230,298,l), -(133,298,l), -(133,165,l), -(359,165,l), +(230,278,l), +(133,278,l), +(133,145,l), +(359,145,l), (359,773,l) ); }, @@ -202,8 +199,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(188,80,l), +(59,145,l), +(188,145,l), (188,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5429.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5429.glyph index 8fbe08c..622b2cb 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5429.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5429.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5429; layers = ( { @@ -11,9 +12,7 @@ nodes = ( (536,637,o), (463,507,o), (351,425,c), -(358,421,o), -(370,410,o), -(375,404,c), +(375,404,l), (485,492,o), (563,624,o), (600,798,c) @@ -32,9 +31,8 @@ nodes = ( closed = 1; nodes = ( (832,418,l), -(832,410,ls), -(817,114,o), -(799,6,o), +(822,216,o), +(810,17,o), (773,-21,cs), (765,-31,o), (756,-32,o), @@ -42,20 +40,15 @@ nodes = ( (721,-32,o), (674,-31,o), (623,-27,c), -(628,-35,o), -(630,-47,o), -(631,-56,c), +(631,-56,l), (675,-60,o), (721,-61,o), (744,-60,cs), (770,-60,o), (784,-55,o), (798,-39,cs), -(828,-6,o), -(844,94,o), -(861,397,cs), -(862,404,o), -(862,418,o), +(839,6,o), +(850,199,o), (862,418,c) ); }, @@ -66,9 +59,7 @@ nodes = ( (554,189,o), (488,41,o), (341,-45,c), -(349,-51,o), -(360,-63,o), -(365,-68,c), +(365,-68,l), (512,28,o), (582,176,o), (607,406,c) @@ -81,9 +72,7 @@ nodes = ( (766,623,o), (825,511,o), (937,411,c), -(942,420,o), -(952,429,o), -(960,435,c), +(960,435,l), (851,529,o), (792,634,o), (755,809,c) @@ -95,10 +84,10 @@ nodes = ( (98,727,l), (98,698,l), (287,698,l), -(287,229,l), -(98,229,l), -(98,199,l), -(317,199,l), +(287,189,l), +(98,189,l), +(98,159,l), +(317,159,l), (317,727,l) ); }, @@ -106,8 +95,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -125,9 +114,7 @@ nodes = ( (494,683,o), (447,553,o), (360,478,c), -(394,459,o), -(458,414,o), -(485,390,c), +(485,390,l), (575,483,o), (633,633,o), (660,809,c) @@ -146,9 +133,8 @@ nodes = ( closed = 1; nodes = ( (763,481,l), -(763,455,ls), -(756,179,o), -(746,80,o), +(759,288,o), +(755,93,o), (730,57,cs), (720,44,o), (712,41,o), @@ -156,20 +142,15 @@ nodes = ( (682,41,o), (656,41,o), (626,45,c), -(646,8,o), -(661,-48,o), -(663,-88,c), +(663,-88,l), (708,-89,o), (749,-88,o), (777,-82,cs), (808,-76,o), (832,-65,o), (855,-32,cs), -(884,7,o), -(895,125,o), -(905,424,cs), -(906,441,o), -(906,481,o), +(895,22,o), +(898,235,o), (906,481,c) ); }, @@ -180,9 +161,7 @@ nodes = ( (522,212,o), (471,80,o), (327,11,c), -(356,-13,o), -(407,-70,o), -(425,-98,c), +(425,-98,l), (588,-3,o), (655,156,o), (676,398,c) @@ -195,9 +174,7 @@ nodes = ( (729,626,o), (776,502,o), (885,394,c), -(905,437,o), -(950,486,o), -(988,518,c), +(988,518,l), (901,595,o), (858,690,o), (827,845,c) @@ -209,10 +186,10 @@ nodes = ( (145,773,l), (145,640,l), (251,640,l), -(251,298,l), -(145,298,l), -(145,165,l), -(384,165,l), +(251,258,l), +(145,258,l), +(145,125,l), +(384,125,l), (384,773,l) ); }, @@ -220,8 +197,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(190,80,l), +(59,125,l), +(190,125,l), (190,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542B_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542B_.glyph index 097f84d..f7d22bd 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542B_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542B_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni542B; layers = ( { @@ -16,22 +17,22 @@ nodes = ( { closed = 1; nodes = ( -(212,17,l), -(212,-13,l), -(799,-13,l), -(799,17,l) +(212,-28,l), +(212,-58,l), +(799,-58,l), +(799,-28,l) ); }, { closed = 1; nodes = ( (198,254,l), -(198,-68,l), -(228,-68,l), +(198,-58,l), +(228,-58,l), (228,225,l), (777,225,l), -(777,-68,l), -(807,-68,l), +(777,-58,l), +(807,-58,l), (807,254,l) ); }, @@ -40,14 +41,10 @@ closed = 1; nodes = ( (743,444,l), (743,438,l), -(700,392,o), -(619,310,o), -(551,246,c), +(551,246,l), (576,230,l), -(643,295,o), -(723,376,o), -(778,432,c), -(757,447,l), +(778,432,l), +(761,444,l), (751,444,l) ); }, @@ -71,9 +68,7 @@ nodes = ( (581,652,o), (771,519,o), (933,463,c), -(939,472,o), -(949,483,o), -(957,490,c), +(957,490,l), (793,541,o), (600,671,o), (506,795,c) @@ -86,9 +81,7 @@ nodes = ( (422,681,o), (246,549,o), (52,481,c), -(59,474,o), -(68,464,o), -(73,457,c), +(73,457,l), (269,528,o), (445,665,o), (539,819,c) @@ -113,22 +106,22 @@ nodes = ( { closed = 1; nodes = ( -(246,64,l), -(246,-60,l), -(751,-60,l), -(751,64,l) +(246,44,l), +(246,-80,l), +(751,-80,l), +(751,44,l) ); }, { closed = 1; nodes = ( (147,268,l), -(147,-95,l), -(294,-95,l), +(147,-80,l), +(294,-80,l), (294,144,l), (690,144,l), -(690,-92,l), -(844,-92,l), +(690,-80,l), +(844,-80,l), (844,268,l) ); }, @@ -137,14 +130,10 @@ closed = 1; nodes = ( (671,480,l), (671,466,l), -(634,411,o), -(566,320,o), -(505,248,c), +(505,248,l), (636,191,l), -(700,267,o), -(768,355,o), -(825,438,c), -(717,487,l), +(825,438,l), +(742,480,l), (694,480,l) ); }, @@ -168,9 +157,7 @@ nodes = ( (552,614,o), (713,512,o), (893,462,c), -(914,500,o), -(957,560,o), -(989,590,c), +(989,590,l), (814,625,o), (649,702,o), (564,797,c) @@ -183,9 +170,7 @@ nodes = ( (381,731,o), (190,637,o), (10,585,c), -(47,548,o), -(88,493,o), -(108,453,c), +(108,453,l), (302,526,o), (490,636,o), (617,797,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542C_.glyph index 11d7c34..69c2634 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542C_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni542C; layers = ( { @@ -45,9 +46,7 @@ nodes = ( (478,319,o), (466,112,o), (353,-41,c), -(360,-44,o), -(372,-54,o), -(377,-60,c), +(377,-60,l), (492,97,o), (508,315,o), (508,473,cs), @@ -60,10 +59,10 @@ nodes = ( (102,734,l), (102,705,l), (297,705,l), -(297,199,l), -(102,199,l), -(102,170,l), -(327,170,l), +(297,159,l), +(102,159,l), +(102,130,l), +(327,130,l), (327,734,l) ); }, @@ -71,8 +70,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,130,l), +(117,130,l), (117,734,l) ); } @@ -124,9 +123,7 @@ nodes = ( (466,322,o), (458,122,o), (357,-10,c), -(391,-27,o), -(456,-77,o), -(482,-105,c), +(482,-105,l), (598,44,o), (618,299,o), (618,465,cs), @@ -139,10 +136,10 @@ nodes = ( (122,771,l), (122,631,l), (252,631,l), -(252,301,l), -(122,301,l), -(122,160,l), -(395,160,l), +(252,281,l), +(122,281,l), +(122,140,l), +(395,140,l), (395,771,l) ); }, @@ -150,8 +147,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(198,78,l), +(59,140,l), +(198,140,l), (198,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542D_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542D_.glyph index bbc0a5a..e5aa497 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542D_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542D_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni542D; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (102,734,l), (102,705,l), (291,705,l), -(291,199,l), -(102,199,l), -(102,170,l), -(321,170,l), +(291,169,l), +(102,169,l), +(102,140,l), +(321,140,l), (321,734,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,140,l), +(117,140,l), (117,734,l) ); }, @@ -52,9 +53,7 @@ nodes = ( (488,188,o), (465,48,o), (320,-54,c), -(327,-58,o), -(335,-69,o), -(339,-76,c), +(339,-76,l), (490,31,o), (518,181,o), (518,302,cs), @@ -84,9 +83,7 @@ nodes = ( (948,11,o), (950,78,o), (950,132,c), -(941,135,o), -(930,140,o), -(922,147,c), +(922,147,l), (921,82,o), (920,33,o), (917,11,cs), @@ -134,10 +131,10 @@ nodes = ( (127,771,l), (127,631,l), (242,631,l), -(242,301,l), -(127,301,l), -(127,160,l), -(372,160,l), +(242,271,l), +(127,271,l), +(127,130,l), +(372,130,l), (372,771,l) ); }, @@ -145,8 +142,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(186,78,l), +(59,130,l), +(186,130,l), (186,771,l) ); }, @@ -176,9 +173,7 @@ nodes = ( (455,214,o), (442,91,o), (298,8,c), -(325,-14,o), -(378,-74,o), -(396,-104,c), +(396,-104,l), (565,-4,o), (599,177,o), (599,313,cs), @@ -208,9 +203,7 @@ nodes = ( (975,13,o), (980,76,o), (981,128,c), -(947,139,o), -(902,163,o), -(877,185,c), +(877,185,l), (877,133,o), (876,91,o), (875,72,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542E_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542E_.glyph index 8a5cace..5c88e2a 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542E_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542E_.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni542E; layers = ( { +guides = ( +{ +angle = 186.1061; +pos = (866,464); +} +); layerId = m01; shapes = ( { @@ -11,9 +18,7 @@ nodes = ( (523,191,o), (489,27,o), (269,-54,c), -(276,-59,o), -(285,-69,o), -(289,-75,c), +(289,-75,l), (515,9,o), (553,179,o), (565,454,c) @@ -33,9 +38,7 @@ nodes = ( (940,-55,o), (949,-19,o), (952,120,c), -(943,123,o), -(932,128,o), -(924,133,c), +(924,133,l), (921,-3,o), (917,-26,o), (885,-26,cs), @@ -64,10 +67,8 @@ nodes = ( { closed = 1; nodes = ( -(378,404,l), -(400,414,o), -(436,418,o), -(866,464,c), +(376,412,l), +(866,464,l), (863,471,o), (860,483,o), (859,491,c), @@ -78,9 +79,7 @@ nodes = ( { closed = 1; nodes = ( -(378,414,o), -(406,425,o), -(406,425,c), +(406,425,l), (406,425,l), (483,530,o), (560,679,o), @@ -92,9 +91,7 @@ nodes = ( (403,469,o), (383,439,o), (368,436,c), -(372,427,o), -(377,412,o), -(378,404,c) +(376,412,l) ); }, { @@ -103,10 +100,10 @@ nodes = ( (102,734,l), (102,705,l), (291,705,l), -(291,199,l), -(102,199,l), -(102,170,l), -(321,170,l), +(291,159,l), +(102,159,l), +(102,130,l), +(321,130,l), (321,734,l) ); }, @@ -114,8 +111,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,130,l), +(117,130,l), (117,734,l) ); } @@ -124,6 +121,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 185.1652; +pos = (857,443); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -133,9 +136,7 @@ nodes = ( (472,249,o), (468,108,o), (258,25,c), -(291,-3,o), -(332,-60,o), -(348,-98,c), +(348,-98,l), (595,10,o), (618,200,o), (626,470,c) @@ -155,9 +156,7 @@ nodes = ( (937,-79,o), (970,-27,o), (982,143,c), -(944,153,o), -(884,177,o), -(856,202,c), +(856,202,l), (853,76,o), (849,52,o), (835,52,cs), @@ -186,10 +185,8 @@ nodes = ( { closed = 1; nodes = ( -(405,387,l), -(446,404,o), -(503,411,o), -(857,443,c), +(400,402,l), +(857,443,l), (852,474,o), (847,529,o), (847,568,c), @@ -200,9 +197,7 @@ nodes = ( { closed = 1; nodes = ( -(405,413,o), -(494,461,o), -(494,461,c), +(494,461,l), (494,465,l), (571,553,o), (659,684,o), @@ -214,9 +209,7 @@ nodes = ( (399,556,o), (381,537,o), (355,530,c), -(372,490,o), -(397,417,o), -(405,387,c) +(400,402,l) ); }, { @@ -225,10 +218,10 @@ nodes = ( (126,771,l), (126,631,l), (235,631,l), -(235,301,l), -(126,301,l), -(126,160,l), -(366,160,l), +(235,271,l), +(126,271,l), +(126,130,l), +(366,130,l), (366,771,l) ); }, @@ -236,8 +229,8 @@ nodes = ( closed = 1; nodes = ( (50,771,l), -(50,78,l), -(179,78,l), +(50,130,l), +(179,130,l), (179,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542F_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542F_.glyph index c07a438..360a957 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542F_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni542F_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni542F; layers = ( { @@ -7,22 +8,22 @@ shapes = ( { closed = 1; nodes = ( -(279,39,l), -(279,10,l), -(848,10,l), -(848,39,l) +(279,-21,l), +(279,-50,l), +(848,-50,l), +(848,-21,l) ); }, { closed = 1; nodes = ( (263,299,l), -(263,-69,l), -(292,-69,l), +(263,-50,l), +(292,-50,l), (292,270,l), (831,270,l), -(831,-66,l), -(861,-66,l), +(831,-50,l), +(861,-50,l), (861,299,l) ); }, @@ -47,9 +48,7 @@ nodes = ( (162,306,o), (149,101,o), (43,-51,c), -(51,-55,o), -(62,-65,o), -(67,-71,c), +(67,-71,l), (176,86,o), (191,302,o), (191,456,cs), @@ -79,23 +78,23 @@ shapes = ( { closed = 1; nodes = ( -(345,86,l), -(345,-45,l), -(827,-45,l), -(827,86,l) +(345,48,l), +(345,-83,l), +(827,-83,l), +(827,48,l) ); }, { closed = 1; nodes = ( -(296,329,l), -(296,-85,l), -(438,-85,l), -(438,196,l), -(778,196,l), -(778,-85,l), -(927,-85,l), -(927,329,l) +(296,327,l), +(296,-83,l), +(438,-83,l), +(438,194,l), +(778,194,l), +(778,-83,l), +(927,-83,l), +(927,327,l) ); }, { @@ -104,10 +103,10 @@ nodes = ( (197,722,l), (197,588,l), (753,588,l), -(753,518,l), -(197,518,l), -(197,384,l), -(900,384,l), +(753,516,l), +(197,516,l), +(197,382,l), +(900,382,l), (900,722,l) ); }, @@ -119,9 +118,7 @@ nodes = ( (141,317,o), (133,127,o), (24,0,c), -(57,-17,o), -(120,-71,o), -(144,-99,c), +(144,-99,l), (269,44,o), (291,291,o), (291,454,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5431.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5431.glyph index 3367e08..a00f98c 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5431.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5431.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5431; layers = ( { @@ -38,9 +39,7 @@ nodes = ( (518,181,o), (693,5,o), (937,-67,c), -(942,-59,o), -(951,-48,o), -(958,-41,c), +(958,-41,l), (715,25,o), (540,199,o), (460,434,c) @@ -54,13 +53,11 @@ nodes = ( (755,181,o), (521,18,o), (304,-44,c), -(310,-51,o), -(318,-63,o), -(322,-71,c), +(322,-71,l), (544,-2,o), (779,163,o), (870,439,c), -(852,450,l), +(854,448,l), (845,448,l) ); }, @@ -70,10 +67,10 @@ nodes = ( (102,734,l), (102,705,l), (288,705,l), -(288,199,l), -(102,199,l), -(102,170,l), -(318,170,l), +(288,173,l), +(102,173,l), +(102,144,l), +(318,144,l), (318,734,l) ); }, @@ -81,8 +78,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,144,l), +(117,144,l), (117,734,l) ); } @@ -123,16 +120,14 @@ nodes = ( { closed = 1; nodes = ( -(432,331,l), -(525,116,o), -(670,-28,o), +(421,368,l), +(516,135,o), +(664,-22,o), (908,-96,c), -(928,-58,o), -(969,0,o), -(1000,29,c), -(779,80,o), -(632,202,o), -(562,369,c) +(1000,29,l), +(773,86,o), +(622,221,o), +(551,406,c) ); }, { @@ -143,13 +138,11 @@ nodes = ( (745,230,o), (562,89,o), (304,35,c), -(331,4,o), -(365,-57,o), -(379,-95,c), +(379,-95,l), (665,-16,o), (864,143,o), (944,452,c), -(851,489,l), +(879,484,l), (827,484,l) ); }, @@ -159,10 +152,10 @@ nodes = ( (134,771,l), (134,631,l), (246,631,l), -(246,301,l), -(134,301,l), -(134,160,l), -(377,160,l), +(246,261,l), +(134,261,l), +(134,120,l), +(377,120,l), (377,771,l) ); }, @@ -170,8 +163,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(190,78,l), +(59,120,l), +(190,120,l), (190,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5432.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5432.glyph index 08066d4..a94e554 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5432.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5432.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5432; layers = ( { @@ -26,9 +27,8 @@ nodes = ( closed = 1; nodes = ( (656,330,l), -(656,324,ls), -(643,87,o), -(629,1,o), +(647,169,o), +(637,10,o), (608,-21,cs), (600,-30,o), (590,-31,o), @@ -36,20 +36,15 @@ nodes = ( (554,-31,o), (498,-30,o), (439,-25,c), -(445,-33,o), -(448,-45,o), -(449,-54,c), +(449,-54,l), (501,-58,o), (553,-59,o), (577,-59,cs), (604,-58,o), (619,-54,o), (632,-39,cs), -(659,-12,o), -(671,71,o), -(684,311,c), -(685,317,o), -(685,330,o), +(667,-4,o), +(675,148,o), (685,330,c) ); }, @@ -57,13 +52,9 @@ nodes = ( closed = 1; nodes = ( (435,557,l), -(429,476,o), -(419,367,o), -(408,301,c), +(408,301,l), (438,301,l), -(447,365,o), -(458,474,o), -(465,557,c) +(465,557,l) ); }, { @@ -85,10 +76,10 @@ nodes = ( (95,727,l), (95,698,l), (273,698,l), -(273,229,l), -(95,229,l), -(95,199,l), -(302,199,l), +(273,189,l), +(95,189,l), +(95,159,l), +(302,159,l), (302,727,l) ); }, @@ -96,8 +87,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -130,9 +121,8 @@ nodes = ( closed = 1; nodes = ( (593,373,l), -(593,352,ls), -(585,150,o), -(575,70,o), +(588,233,o), +(584,80,o), (558,51,cs), (548,40,o), (539,38,o), @@ -140,20 +130,15 @@ nodes = ( (505,38,o), (470,39,o), (433,42,c), -(455,6,o), -(471,-51,o), -(474,-92,c), +(474,-92,l), (522,-93,o), (566,-92,o), (594,-87,cs), (628,-82,o), (653,-72,o), (676,-42,cs), -(706,-6,o), -(718,93,o), -(729,320,cs), -(730,337,o), -(731,373,o), +(717,7,o), +(722,170,o), (731,373,c) ); }, @@ -161,13 +146,9 @@ nodes = ( closed = 1; nodes = ( (432,598,l), -(428,483,o), -(416,341,o), -(403,247,c), +(403,247,l), (532,247,l), -(543,338,o), -(554,480,o), -(560,598,c) +(560,598,l) ); }, { @@ -189,10 +170,10 @@ nodes = ( (150,773,l), (150,640,l), (238,640,l), -(238,298,l), -(150,298,l), -(150,165,l), -(366,165,l), +(238,248,l), +(150,248,l), +(150,115,l), +(366,115,l), (366,773,l) ); }, @@ -200,8 +181,8 @@ nodes = ( closed = 1; nodes = ( (60,773,l), -(60,80,l), -(187,80,l), +(60,115,l), +(187,115,l), (187,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5434.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5434.glyph index f89df71..b4ef7a1 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5434.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5434.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5434; layers = ( { @@ -47,9 +48,7 @@ nodes = ( (470,123,o), (403,4,o), (47,-45,c), -(53,-52,o), -(60,-65,o), -(63,-72,c), +(63,-72,l), (423,-18,o), (497,106,o), (519,395,c) @@ -62,9 +61,7 @@ nodes = ( (560,37,o), (699,-42,o), (931,-71,c), -(935,-62,o), -(943,-50,o), -(951,-43,c), +(951,-43,l), (721,-20,o), (585,56,o), (539,226,c) @@ -120,9 +117,7 @@ nodes = ( (401,180,o), (391,75,o), (33,25,c), -(59,-5,o), -(92,-59,o), -(103,-96,c), +(103,-96,l), (511,-28,o), (548,128,o), (562,411,c) @@ -135,9 +130,7 @@ nodes = ( (510,27,o), (611,-65,o), (881,-94,c), -(897,-54,o), -(931,6,o), -(961,36,c), +(961,36,l), (727,46,o), (622,108,o), (576,252,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5435.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5435.glyph index 3e9a5f2..ee8d67b 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5435.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5435.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5435; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (95,727,l), (95,698,l), (279,698,l), -(279,229,l), -(95,229,l), -(95,199,l), -(308,199,l), +(279,179,l), +(95,179,l), +(95,149,l), +(308,149,l), (308,727,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,149,l), +(114,149,l), (114,727,l) ); }, @@ -33,9 +34,7 @@ nodes = ( (450,545,o), (420,426,o), (380,344,c), -(388,341,o), -(402,333,o), -(407,330,c), +(407,330,l), (444,413,o), (476,535,o), (499,651,c) @@ -61,9 +60,7 @@ nodes = ( (758,154,o), (594,18,o), (336,-45,c), -(343,-51,o), -(351,-63,o), -(355,-70,c), +(355,-70,l), (615,-4,o), (783,137,o), (860,335,c) @@ -91,10 +88,10 @@ nodes = ( (145,773,l), (145,640,l), (242,640,l), -(242,298,l), -(145,298,l), -(145,165,l), -(375,165,l), +(242,258,l), +(145,258,l), +(145,125,l), +(375,125,l), (375,773,l) ); }, @@ -102,8 +99,8 @@ nodes = ( closed = 1; nodes = ( (54,773,l), -(54,80,l), -(185,80,l), +(54,125,l), +(185,125,l), (185,773,l) ); }, @@ -114,9 +111,7 @@ nodes = ( (429,581,o), (408,469,o), (374,401,c), -(406,388,o), -(467,360,o), -(494,342,c), +(494,342,l), (529,419,o), (557,544,o), (571,662,c) @@ -142,9 +137,7 @@ nodes = ( (732,156,o), (580,79,o), (339,44,c), -(369,10,o), -(401,-46,o), -(414,-89,c), +(414,-89,l), (688,-29,o), (856,72,o), (941,322,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5438.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5438.glyph index 826d428..02b536e 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5438.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5438.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5438; layers = ( { @@ -11,9 +12,7 @@ nodes = ( (477,377,o), (442,113,o), (251,-52,c), -(258,-57,o), -(271,-66,o), -(277,-72,c), +(277,-72,l), (468,106,o), (505,361,o), (521,756,c) @@ -45,13 +44,11 @@ nodes = ( (814,195,o), (649,33,o), (456,-49,c), -(463,-54,o), -(474,-65,o), -(477,-73,c), +(477,-73,l), (672,14,o), (840,179,o), (907,466,c), -(888,475,l), +(894,474,l), (881,474,l) ); }, @@ -62,9 +59,7 @@ nodes = ( (550,253,o), (698,23,o), (934,-68,c), -(940,-60,o), -(950,-48,o), -(958,-42,c), +(958,-42,l), (721,41,o), (574,270,o), (505,548,c) @@ -74,13 +69,9 @@ nodes = ( closed = 1; nodes = ( (770,763,l), -(746,665,o), -(708,525,o), -(678,444,c), +(678,444,l), (710,444,l), -(736,523,o), -(774,661,o), -(802,763,c) +(802,763,l) ); }, { @@ -89,10 +80,10 @@ nodes = ( (101,727,l), (101,698,l), (281,698,l), -(281,229,l), -(101,229,l), -(101,199,l), -(311,199,l), +(281,189,l), +(101,189,l), +(101,159,l), +(311,159,l), (311,727,l) ); }, @@ -100,8 +91,8 @@ nodes = ( closed = 1; nodes = ( (90,727,l), -(90,96,l), -(120,96,l), +(90,159,l), +(120,159,l), (120,727,l) ); } @@ -119,9 +110,7 @@ nodes = ( (455,409,o), (414,138,o), (270,-13,c), -(302,-31,o), -(367,-75,o), -(389,-96,c), +(389,-96,l), (535,82,o), (583,372,o), (600,729,c) @@ -153,13 +142,11 @@ nodes = ( (771,277,o), (652,103,o), (482,14,c), -(513,-7,o), -(562,-62,o), -(582,-94,c), +(582,-94,l), (760,9,o), (895,218,o), (949,518,c), -(861,552,l), +(907,547,l), (837,547,l) ); }, @@ -170,9 +157,7 @@ nodes = ( (534,190,o), (675,6,o), (887,-92,c), -(908,-56,o), -(951,-1,o), -(982,26,c), +(982,26,l), (784,105,o), (639,270,o), (569,461,c) @@ -182,13 +167,9 @@ nodes = ( closed = 1; nodes = ( (717,795,l), -(695,674,o), -(659,522,o), -(628,423,c), +(628,423,l), (763,423,l), -(792,518,o), -(829,669,o), -(856,795,c) +(856,795,l) ); }, { @@ -208,8 +189,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(181,80,l), +(59,165,l), +(181,165,l), (181,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5439.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5439.glyph index 88b0a9e..de3a2b3 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5439.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5439.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5439; layers = ( { @@ -20,9 +21,7 @@ nodes = ( (494,661,o), (436,503,o), (353,398,c), -(361,394,o), -(375,386,o), -(379,381,c), +(379,381,l), (460,489,o), (520,649,o), (558,823,c) @@ -33,14 +32,10 @@ closed = 1; nodes = ( (917,643,l), (917,634,l), -(896,560,o), -(865,468,o), -(835,412,c), +(835,412,l), (860,402,l), -(891,459,o), -(923,556,o), -(949,636,c), -(929,645,l), +(952,643,l), +(936,643,l), (923,643,l) ); }, @@ -52,9 +47,7 @@ nodes = ( (636,293,o), (616,99,o), (324,-47,c), -(330,-52,o), -(339,-62,o), -(343,-68,c), +(343,-68,l), (641,82,o), (666,281,o), (666,442,cs), @@ -68,9 +61,7 @@ nodes = ( (675,177,o), (763,1,o), (932,-67,c), -(937,-59,o), -(946,-49,o), -(954,-43,c), +(954,-43,l), (785,18,o), (699,192,o), (664,413,c) @@ -82,10 +73,10 @@ nodes = ( (94,734,l), (94,705,l), (286,705,l), -(286,199,l), -(94,199,l), -(94,170,l), -(316,170,l), +(286,169,l), +(94,169,l), +(94,140,l), +(316,140,l), (316,734,l) ); }, @@ -93,8 +84,8 @@ nodes = ( closed = 1; nodes = ( (79,734,l), -(79,94,l), -(108,94,l), +(79,140,l), +(108,140,l), (108,734,l) ); } @@ -121,9 +112,7 @@ nodes = ( (486,694,o), (431,536,o), (352,443,c), -(387,425,o), -(453,384,o), -(481,362,c), +(481,362,l), (560,471,o), (624,647,o), (658,830,c) @@ -134,14 +123,10 @@ closed = 1; nodes = ( (815,691,l), (815,668,l), -(804,580,o), -(781,470,o), -(760,401,c), +(760,401,l), (887,361,l), -(919,441,o), -(951,559,o), -(972,668,c), -(861,697,l), +(975,691,l), +(890,691,l), (838,691,l) ); }, @@ -153,9 +138,7 @@ nodes = ( (581,300,o), (554,122,o), (312,12,c), -(346,-13,o), -(394,-65,o), -(415,-98,c), +(415,-98,l), (692,37,o), (725,263,o), (725,407,cs), @@ -169,9 +152,7 @@ nodes = ( (649,139,o), (729,-12,o), (889,-91,c), -(909,-52,o), -(953,6,o), -(985,35,c), +(985,35,l), (843,91,o), (761,214,o), (721,362,c) @@ -183,10 +164,10 @@ nodes = ( (134,771,l), (134,631,l), (255,631,l), -(255,301,l), -(134,301,l), -(134,160,l), -(392,160,l), +(255,251,l), +(134,251,l), +(134,110,l), +(392,110,l), (392,771,l) ); }, @@ -194,8 +175,8 @@ nodes = ( closed = 1; nodes = ( (58,771,l), -(58,78,l), -(195,78,l), +(58,110,l), +(195,110,l), (195,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni543B_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni543B_.glyph index 51e460c..0bf7b15 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni543B_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni543B_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni543B; layers = ( { @@ -20,9 +21,7 @@ nodes = ( (452,666,o), (394,514,o), (312,415,c), -(319,410,o), -(331,401,o), -(336,396,c), +(336,396,l), (418,500,o), (477,653,o), (515,823,c) @@ -32,14 +31,12 @@ nodes = ( closed = 1; nodes = ( (610,653,l), -(558,439,o), -(467,257,o), -(333,141,c), -(341,136,o), -(354,125,o), -(358,119,c), -(491,242,o), -(584,424,o), +(555,434,o), +(460,248,o), +(319,129,c), +(344,107,l), +(484,233,o), +(581,419,o), (640,647,c) ); }, @@ -50,9 +47,7 @@ nodes = ( (725,369,o), (636,137,o), (473,-7,c), -(480,-13,o), -(492,-23,o), -(497,-29,c), +(497,-29,l), (661,125,o), (752,353,o), (807,646,c) @@ -62,9 +57,8 @@ nodes = ( closed = 1; nodes = ( (897,661,l), -(897,652,ls), -(874,183,o), -(849,16,o), +(882,346,o), +(863,32,o), (813,-24,cs), (802,-37,o), (792,-39,o), @@ -72,20 +66,15 @@ nodes = ( (755,-39,o), (708,-38,o), (655,-34,c), -(660,-42,o), -(663,-55,o), -(664,-64,c), +(664,-64,l), (708,-67,o), (752,-68,o), (777,-68,cs), (805,-67,o), (822,-62,o), (838,-41,cs), -(880,7,o), -(902,159,o), -(926,638,cs), -(926,644,o), -(926,661,o), +(898,28,o), +(913,397,o), (926,661,c) ); }, @@ -95,10 +84,10 @@ nodes = ( (105,727,l), (105,698,l), (274,698,l), -(274,229,l), -(105,229,l), -(105,199,l), -(303,199,l), +(274,209,l), +(105,209,l), +(105,179,l), +(303,179,l), (303,727,l) ); }, @@ -106,8 +95,8 @@ nodes = ( closed = 1; nodes = ( (91,727,l), -(91,96,l), -(121,96,l), +(91,179,l), +(121,179,l), (121,727,l) ); } @@ -134,9 +123,7 @@ nodes = ( (448,699,o), (395,546,o), (320,454,c), -(352,436,o), -(408,395,o), -(430,373,c), +(430,373,l), (508,480,o), (571,653,o), (606,829,c) @@ -149,9 +136,7 @@ nodes = ( (520,459,o), (450,302,o), (345,208,c), -(372,187,o), -(419,140,o), -(439,117,c), +(439,117,l), (550,229,o), (633,409,o), (678,609,c) @@ -164,9 +149,7 @@ nodes = ( (656,362,o), (579,145,o), (421,21,c), -(449,-1,o), -(498,-51,o), -(516,-76,c), +(516,-76,l), (683,71,o), (772,313,o), (817,612,c) @@ -176,9 +159,8 @@ nodes = ( closed = 1; nodes = ( (826,699,l), -(826,669,ls), -(811,250,o), -(791,92,o), +(818,452,o), +(808,112,o), (763,58,c), (752,42,o), (743,38,o), @@ -186,20 +168,15 @@ nodes = ( (707,38,o), (677,38,o), (640,42,c), -(660,6,o), -(675,-50,o), -(677,-87,c), +(677,-87,l), (722,-88,o), (765,-88,o), (795,-81,cs), (830,-74,o), (855,-62,o), (881,-23,cs), -(918,28,o), -(938,190,o), -(957,637,c), -(959,654,o), -(960,699,o), +(929,43,o), +(944,321,o), (960,699,c) ); }, @@ -209,10 +186,10 @@ nodes = ( (138,773,l), (138,640,l), (229,640,l), -(229,298,l), -(138,298,l), -(138,165,l), -(358,165,l), +(229,278,l), +(138,278,l), +(138,145,l), +(358,145,l), (358,773,l) ); }, @@ -220,8 +197,8 @@ nodes = ( closed = 1; nodes = ( (57,773,l), -(57,80,l), -(186,80,l), +(57,144,l), +(186,144,l), (186,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni543C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni543C_.glyph index 36e9bcf..528e623 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni543C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni543C_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni543C; layers = ( { @@ -37,9 +38,7 @@ nodes = ( (435,-36,o), (388,-36,o), (329,-35,c), -(334,-44,o), -(339,-57,o), -(341,-65,c), +(341,-65,l), (409,-65,o), (450,-65,o), (471,-60,cs), @@ -63,7 +62,7 @@ nodes = ( (546,597,o), (613,678,o), (654,754,c), -(632,767,l), +(634,765,l), (626,765,l) ); }, @@ -81,9 +80,7 @@ nodes = ( (938,-57,o), (945,-10,o), (949,147,c), -(940,149,o), -(929,154,o), -(920,161,c), +(920,161,l), (917,7,o), (914,-30,o), (880,-30,cs), @@ -102,10 +99,10 @@ nodes = ( (102,739,l), (102,710,l), (259,710,l), -(259,174,l), -(102,174,l), -(102,144,l), -(288,144,l), +(259,152,l), +(102,152,l), +(102,122,l), +(288,122,l), (288,739,l) ); }, @@ -113,8 +110,8 @@ nodes = ( closed = 1; nodes = ( (86,739,l), -(86,42,l), -(116,42,l), +(86,122,l), +(116,122,l), (116,739,l) ); } @@ -158,9 +155,7 @@ nodes = ( (410,37,o), (366,37,o), (331,39,c), -(348,2,o), -(366,-55,o), -(370,-93,c), +(370,-93,l), (440,-93,o), (492,-90,o), (532,-70,cs), @@ -184,7 +179,7 @@ nodes = ( (593,545,o), (667,655,o), (718,748,c), -(627,812,l), +(634,804,l), (600,804,l) ); }, @@ -202,9 +197,7 @@ nodes = ( (952,-85,o), (980,-11,o), (990,168,c), -(953,177,o), -(897,203,o), -(865,228,c), +(865,228,l), (863,88,o), (861,48,o), (850,48,cs), @@ -223,10 +216,10 @@ nodes = ( (146,792,l), (146,670,l), (219,670,l), -(219,247,l), -(146,247,l), -(146,124,l), -(337,124,l), +(219,227,l), +(146,227,l), +(146,104,l), +(337,104,l), (337,792,l) ); }, @@ -234,8 +227,8 @@ nodes = ( closed = 1; nodes = ( (59,792,l), -(59,58,l), -(179,58,l), +(59,104,l), +(179,104,l), (179,792,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni543E_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni543E_.glyph index 32dfb4f..0ef8b93 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni543E_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni543E_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni543E; layers = ( { @@ -25,22 +26,22 @@ nodes = ( { closed = 1; nodes = ( -(210,13,l), -(210,-16,l), -(797,-16,l), -(797,13,l) +(210,-25,l), +(210,-54,l), +(797,-54,l), +(797,-25,l) ); }, { closed = 1; nodes = ( (191,245,l), -(191,-77,l), -(221,-77,l), +(191,-54,l), +(221,-54,l), (221,216,l), (782,216,l), -(782,-74,l), -(812,-74,l), +(782,-54,l), +(812,-54,l), (812,245,l) ); }, @@ -48,13 +49,9 @@ nodes = ( closed = 1; nodes = ( (412,778,l), -(384,660,o), -(340,487,o), -(307,389,c), +(307,389,l), (339,389,l), -(369,484,o), -(413,656,o), -(442,778,c) +(442,778,l) ); }, { @@ -70,15 +67,11 @@ nodes = ( closed = 1; nodes = ( (723,611,l), -(723,605,ls), -(721,554,o), -(713,452,o), -(704,383,c), +(723,605,l), +(704,383,l), (733,381,l), -(741,450,o), -(749,543,o), -(753,611,c), -(732,614,l), +(753,611,l), +(739,611,l), (726,611,l) ); } @@ -110,22 +103,22 @@ nodes = ( { closed = 1; nodes = ( -(244,62,l), -(244,-62,l), -(762,-62,l), -(762,62,l) +(244,40,l), +(244,-84,l), +(762,-84,l), +(762,40,l) ); }, { closed = 1; nodes = ( (159,274,l), -(159,-94,l), -(302,-94,l), +(159,-84,l), +(302,-84,l), (302,152,l), (698,152,l), -(698,-94,l), -(848,-94,l), +(698,-84,l), +(848,-84,l), (848,274,l) ); }, @@ -133,13 +126,9 @@ nodes = ( closed = 1; nodes = ( (349,773,l), -(331,652,o), -(299,504,o), -(271,405,c), +(271,405,l), (426,405,l), -(450,500,o), -(478,648,o), -(500,773,c) +(500,773,l) ); }, { @@ -155,15 +144,11 @@ nodes = ( closed = 1; nodes = ( (652,639,l), -(652,624,ls), -(651,569,o), -(645,470,o), -(637,392,c), +(652,624,l), +(637,392,l), (779,383,l), -(786,457,o), -(793,547,o), -(795,638,c), -(690,644,l), +(795,639,l), +(701,639,l), (666,639,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5440.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5440.glyph index 14b8ed8..83e69d6 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5440.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5440.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5440; layers = ( { @@ -29,9 +30,7 @@ nodes = ( (657,277,o), (462,115,o), (310,41,c), -(318,35,o), -(329,24,o), -(334,15,c), +(334,15,l), (483,94,o), (679,257,o), (787,410,c) @@ -48,9 +47,7 @@ nodes = ( (724,-41,o), (659,-42,o), (581,-40,c), -(586,-50,o), -(592,-63,o), -(594,-71,c), +(594,-71,l), (685,-71,o), (736,-71,o), (762,-65,cs), @@ -64,13 +61,9 @@ nodes = ( closed = 1; nodes = ( (450,692,l), -(437,603,o), -(417,476,o), -(399,403,c), +(399,403,l), (430,403,l), -(446,474,o), -(468,597,o), -(480,688,c) +(480,688,l) ); }, { @@ -79,10 +72,10 @@ nodes = ( (99,734,l), (99,705,l), (291,705,l), -(291,199,l), -(99,199,l), -(99,170,l), -(321,170,l), +(291,169,l), +(99,169,l), +(99,140,l), +(321,140,l), (321,734,l) ); }, @@ -90,8 +83,8 @@ nodes = ( closed = 1; nodes = ( (84,734,l), -(84,94,l), -(114,94,l), +(84,140,l), +(114,140,l), (114,734,l) ); } @@ -127,9 +120,7 @@ nodes = ( (597,289,o), (459,154,o), (318,80,c), -(352,51,o), -(400,-6,o), -(425,-43,c), +(425,-43,l), (573,51,o), (709,204,o), (796,371,c) @@ -146,9 +137,7 @@ nodes = ( (690,52,o), (634,52,o), (582,54,c), -(602,13,o), -(623,-54,o), -(628,-95,c), +(628,-95,l), (711,-95,o), (774,-90,o), (818,-67,cs), @@ -162,13 +151,9 @@ nodes = ( closed = 1; nodes = ( (450,657,l), -(439,557,o), -(420,430,o), -(402,349,c), +(402,349,l), (541,349,l), -(556,425,o), -(574,547,o), -(587,647,c) +(587,647,l) ); }, { @@ -177,10 +162,10 @@ nodes = ( (134,771,l), (134,631,l), (249,631,l), -(249,301,l), -(134,301,l), -(134,160,l), -(380,160,l), +(249,291,l), +(134,291,l), +(134,150,l), +(380,150,l), (380,771,l) ); }, @@ -188,8 +173,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(191,78,l), +(59,150,l), +(191,150,l), (191,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5443.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5443.glyph index f06da81..eb7ab8f 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5443.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5443.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5443; layers = ( { @@ -30,9 +31,7 @@ nodes = ( (419,303,o), (406,96,o), (287,-54,c), -(294,-57,o), -(306,-65,o), -(311,-71,c), +(311,-71,l), (432,82,o), (448,299,o), (448,460,cs), @@ -50,9 +49,7 @@ nodes = ( (826,271,o), (778,270,o), (715,272,c), -(720,263,o), -(724,252,o), -(726,244,c), +(726,244,l), (801,244,o), (843,243,o), (864,249,cs), @@ -76,9 +73,7 @@ nodes = ( (936,-53,o), (947,-13,o), (953,128,c), -(943,130,o), -(931,135,o), -(922,141,c), +(922,141,l), (917,6,o), (911,-23,o), (861,-23,cs), @@ -97,10 +92,10 @@ nodes = ( (95,727,l), (95,698,l), (284,698,l), -(284,229,l), -(95,229,l), -(95,199,l), -(314,199,l), +(284,186,l), +(95,186,l), +(95,156,l), +(314,156,l), (314,727,l) ); }, @@ -108,8 +103,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,156,l), +(114,156,l), (114,727,l) ); } @@ -146,9 +141,7 @@ nodes = ( (395,300,o), (388,110,o), (297,-17,c), -(327,-32,o), -(385,-78,o), -(407,-103,c), +(407,-103,l), (513,39,o), (530,281,o), (530,447,cs), @@ -166,9 +159,7 @@ nodes = ( (771,310,o), (739,310,o), (713,311,c), -(730,278,o), -(748,225,o), -(753,188,c), +(753,188,l), (806,188,o), (847,191,o), (881,211,cs), @@ -192,9 +183,7 @@ nodes = ( (930,-75,o), (964,-24,o), (977,130,c), -(942,138,o), -(888,161,o), -(860,182,c), +(860,182,l), (855,71,o), (848,47,o), (817,47,cs), @@ -213,10 +202,10 @@ nodes = ( (130,773,l), (130,640,l), (236,640,l), -(236,298,l), -(130,298,l), -(130,165,l), -(356,165,l), +(236,288,l), +(130,288,l), +(130,155,l), +(356,155,l), (356,773,l) ); }, @@ -224,8 +213,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(183,80,l), +(59,155,l), +(183,155,l), (183,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5446.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5446.glyph index 9045dd8..9ff0af5 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5446.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5446.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5446; layers = ( { @@ -47,9 +48,7 @@ nodes = ( (369,187,o), (194,55,o), (42,-3,c), -(49,-9,o), -(58,-18,o), -(63,-27,c), +(63,-27,l), (214,36,o), (391,170,o), (483,311,c) @@ -62,9 +61,7 @@ nodes = ( (605,172,o), (781,43,o), (935,-16,c), -(940,-9,o), -(949,2,o), -(957,9,c), +(957,9,l), (801,63,o), (627,188,o), (539,322,c) @@ -120,9 +117,7 @@ nodes = ( (322,193,o), (179,100,o), (22,55,c), -(54,24,o), -(99,-34,o), -(122,-71,c), +(122,-71,l), (286,-9,o), (428,108,o), (517,252,c) @@ -135,9 +130,7 @@ nodes = ( (572,106,o), (709,-7,o), (875,-65,c), -(898,-25,o), -(944,36,o), -(978,68,c), +(978,68,l), (819,109,o), (677,194,o), (604,295,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5448.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5448.glyph index 97535df..272c9a6 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5448.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5448.glyph @@ -1,4 +1,5 @@ { +color = 7; glyphname = uni5448; layers = ( { diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni544A_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni544A_.glyph index 0a684a4..13b43da 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni544A_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni544A_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni544A; layers = ( { @@ -25,10 +26,10 @@ nodes = ( { closed = 1; nodes = ( -(216,9,l), -(216,-20,l), -(794,-20,l), -(794,9,l) +(216,-36,l), +(216,-65,l), +(794,-65,l), +(794,-36,l) ); }, { @@ -44,12 +45,12 @@ nodes = ( closed = 1; nodes = ( (197,287,l), -(197,-85,l), -(225,-85,l), +(197,-65,l), +(225,-65,l), (225,258,l), (778,258,l), -(778,-85,l), -(805,-85,l), +(778,-65,l), +(805,-65,l), (805,287,l) ); }, @@ -60,9 +61,7 @@ nodes = ( (233,698,o), (169,581,o), (94,504,c), -(102,499,o), -(116,490,o), -(121,486,c), +(121,486,l), (192,567,o), (259,685,o), (304,809,c) @@ -96,10 +95,10 @@ nodes = ( { closed = 1; nodes = ( -(241,83,l), -(241,-51,l), -(773,-51,l), -(773,83,l) +(241,63,l), +(241,-71,l), +(773,-71,l), +(773,63,l) ); }, { @@ -115,12 +114,12 @@ nodes = ( closed = 1; nodes = ( (166,319,l), -(166,-95,l), -(316,-95,l), +(166,-71,l), +(316,-71,l), (316,186,l), (701,186,l), -(701,-91,l), -(858,-91,l), +(701,-71,l), +(858,-71,l), (858,319,l) ); }, @@ -131,9 +130,7 @@ nodes = ( (173,750,o), (111,641,o), (39,577,c), -(75,560,o), -(141,523,o), -(172,500,c), +(172,500,l), (239,575,o), (311,698,o), (352,820,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni544B_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni544B_.glyph index 2d19392..4da75b5 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni544B_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni544B_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni544B; layers = ( { @@ -20,9 +21,7 @@ nodes = ( (665,155,o), (778,-1,o), (939,-70,c), -(944,-62,o), -(954,-50,o), -(962,-44,c), +(962,-44,l), (802,18,o), (690,171,o), (639,359,c) @@ -34,10 +33,10 @@ nodes = ( (100,691,l), (100,662,l), (286,662,l), -(286,217,l), -(100,217,l), -(100,187,l), -(316,187,l), +(286,170,l), +(100,170,l), +(100,140,l), +(316,140,l), (316,691,l) ); }, @@ -45,8 +44,8 @@ nodes = ( closed = 1; nodes = ( (84,691,l), -(84,100,l), -(114,100,l), +(84,140,l), +(114,140,l), (114,691,l) ); }, @@ -67,9 +66,7 @@ nodes = ( (608,344,o), (602,109,o), (285,-47,c), -(292,-53,o), -(301,-64,o), -(305,-70,c), +(305,-70,l), (625,93,o), (637,335,o), (637,526,cs), @@ -99,9 +96,7 @@ nodes = ( (648,166,o), (723,-6,o), (892,-96,c), -(914,-55,o), -(959,6,o), -(992,35,c), +(992,35,l), (839,100,o), (761,241,o), (723,412,c) @@ -113,10 +108,10 @@ nodes = ( (144,726,l), (144,597,l), (220,597,l), -(220,277,l), -(144,277,l), -(144,148,l), -(340,148,l), +(220,237,l), +(144,237,l), +(144,108,l), +(340,108,l), (340,726,l) ); }, @@ -124,8 +119,8 @@ nodes = ( closed = 1; nodes = ( (60,726,l), -(60,64,l), -(176,64,l), +(60,108,l), +(176,108,l), (176,726,l) ); }, @@ -146,9 +141,7 @@ nodes = ( (574,299,o), (550,115,o), (281,17,c), -(315,-11,o), -(360,-67,o), -(380,-98,c), +(380,-98,l), (665,31,o), (718,256,o), (718,463,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5450.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5450.glyph index a907d35..1b58877 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5450.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5450.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5450; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (102,734,l), (102,705,l), (277,705,l), -(277,199,l), -(102,199,l), -(102,170,l), -(306,170,l), +(277,173,l), +(102,173,l), +(102,144,l), +(306,144,l), (306,734,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,144,l), +(117,144,l), (117,734,l) ); }, @@ -37,9 +38,7 @@ nodes = ( (841,-38,o), (784,-39,o), (714,-37,c), -(719,-46,o), -(724,-59,o), -(726,-66,c), +(726,-66,l), (808,-66,o), (855,-66,o), (878,-62,cs), @@ -68,9 +67,7 @@ nodes = ( (652,534,o), (639,319,o), (474,147,c), -(482,143,o), -(493,135,o), -(499,130,c), +(499,130,l), (667,306,o), (682,526,o), (682,704,cs), @@ -103,10 +100,10 @@ nodes = ( (136,771,l), (136,631,l), (242,631,l), -(242,301,l), -(136,301,l), -(136,160,l), -(370,160,l), +(242,259,l), +(136,259,l), +(136,118,l), +(370,118,l), (370,771,l) ); }, @@ -114,8 +111,8 @@ nodes = ( closed = 1; nodes = ( (62,771,l), -(62,78,l), -(190,78,l), +(62,118,l), +(190,118,l), (190,771,l) ); }, @@ -130,9 +127,7 @@ nodes = ( (781,50,o), (731,50,o), (691,52,c), -(709,16,o), -(728,-47,o), -(732,-86,c), +(732,-86,l), (806,-86,o), (859,-83,o), (899,-61,cs), @@ -161,9 +156,7 @@ nodes = ( (620,536,o), (607,343,o), (482,197,c), -(515,176,o), -(567,128,o), -(590,98,c), +(590,98,l), (739,273,o), (756,506,o), (756,680,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5452.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5452.glyph index 411795a..8dcc9ab 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5452.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5452.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5452; layers = ( { @@ -18,9 +19,7 @@ nodes = ( (943,-39,o), (953,-12,o), (957,93,c), -(947,96,o), -(935,100,o), -(927,107,c), +(927,107,l), (924,8,o), (919,-10,o), (886,-10,cs), @@ -49,9 +48,7 @@ nodes = ( (593,482,o), (578,109,o), (281,-49,c), -(288,-54,o), -(297,-61,o), -(302,-66,c), +(302,-66,l), (604,96,o), (622,474,o), (627,754,c) @@ -72,10 +69,10 @@ nodes = ( (114,721,l), (114,692,l), (300,692,l), -(300,220,l), -(114,220,l), -(114,190,l), -(329,190,l), +(300,193,l), +(114,193,l), +(114,163,l), +(329,163,l), (329,721,l) ); }, @@ -83,8 +80,8 @@ nodes = ( closed = 1; nodes = ( (98,721,l), -(98,113,l), -(128,113,l), +(98,163,l), +(128,163,l), (128,721,l) ); } @@ -109,9 +106,7 @@ nodes = ( (938,-83,o), (974,-44,o), (987,89,c), -(949,98,o), -(892,121,o), -(865,143,c), +(865,143,l), (862,60,o), (857,45,o), (841,45,cs), @@ -140,9 +135,7 @@ nodes = ( (538,492,o), (549,180,o), (272,3,c), -(313,-25,o), -(357,-73,o), -(381,-112,c), +(381,-112,l), (677,94,o), (687,453,o), (692,780,c) @@ -163,10 +156,10 @@ nodes = ( (144,763,l), (144,629,l), (235,629,l), -(235,293,l), -(144,293,l), -(144,159,l), -(361,159,l), +(235,273,l), +(144,273,l), +(144,139,l), +(361,139,l), (361,763,l) ); }, @@ -174,8 +167,8 @@ nodes = ( closed = 1; nodes = ( (68,763,l), -(68,83,l), -(196,83,l), +(68,139,l), +(196,139,l), (196,763,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5453.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5453.glyph index 17cbcd2..53d4ab6 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5453.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5453.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5453; layers = ( { @@ -27,9 +28,7 @@ nodes = ( (910,-51,o), (923,-33,o), (929,118,c), -(921,120,o), -(908,125,o), -(901,130,c), +(901,130,l), (897,-2,o), (889,-22,o), (846,-22,cs), @@ -37,13 +36,10 @@ nodes = ( (483,-22,o), (453,-11,o), (453,16,cs), -(453,50,o), -(477,104,o), -(841,453,cs), -(843,455,o), -(846,457,o), +(453,75,o), +(606,228,o), (848,460,c), -(827,470,l), +(829,468,l), (819,468,l) ); }, @@ -80,10 +76,10 @@ nodes = ( (102,746,l), (102,717,l), (291,717,l), -(291,199,l), -(102,199,l), -(102,170,l), -(321,170,l), +(291,169,l), +(102,169,l), +(102,140,l), +(321,140,l), (321,746,l) ); }, @@ -91,8 +87,8 @@ nodes = ( closed = 1; nodes = ( (87,746,l), -(87,84,l), -(117,84,l), +(87,140,l), +(117,140,l), (117,746,l) ); } @@ -126,9 +122,7 @@ nodes = ( (904,-77,o), (959,-35,o), (972,167,c), -(931,175,o), -(886,191,o), -(846,213,c), +(846,213,l), (842,79,o), (826,63,o), (793,63,cs), @@ -136,13 +130,10 @@ nodes = ( (591,63,o), (569,71,o), (569,95,cs), -(569,127,o), -(593,173,o), -(927,432,cs), -(936,439,o), -(942,449,o), -(946,457,c), -(851,510,l), +(569,153,o), +(726,276,o), +(954,452,c), +(858,506,l), (818,506,l) ); }, @@ -179,10 +170,10 @@ nodes = ( (134,768,l), (134,628,l), (261,628,l), -(261,298,l), -(134,298,l), -(134,157,l), -(392,157,l), +(261,278,l), +(134,278,l), +(134,137,l), +(392,137,l), (392,768,l) ); }, @@ -190,8 +181,8 @@ nodes = ( closed = 1; nodes = ( (59,768,l), -(59,75,l), -(191,75,l), +(59,137,l), +(191,137,l), (191,768,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5454.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5454.glyph index 8d88c64..5c696af 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5454.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5454.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5454; layers = ( { @@ -33,9 +34,7 @@ nodes = ( (641,567,o), (638,130,o), (304,-51,c), -(311,-56,o), -(324,-65,o), -(329,-71,c), +(329,-71,l), (666,118,o), (670,555,o), (672,828,c) @@ -48,9 +47,7 @@ nodes = ( (685,265,o), (783,40,o), (939,-69,c), -(945,-62,o), -(955,-52,o), -(962,-46,c), +(962,-46,l), (808,54,o), (711,277,o), (664,535,c) @@ -62,10 +59,10 @@ nodes = ( (111,734,l), (111,705,l), (303,705,l), -(303,199,l), -(111,199,l), -(111,170,l), -(332,170,l), +(303,173,l), +(111,173,l), +(111,144,l), +(332,144,l), (332,734,l) ); }, @@ -73,8 +70,8 @@ nodes = ( closed = 1; nodes = ( (96,734,l), -(96,94,l), -(126,94,l), +(96,144,l), +(126,144,l), (126,734,l) ); } @@ -114,9 +111,7 @@ nodes = ( (590,568,o), (607,206,o), (268,16,c), -(307,-12,o), -(349,-57,o), -(371,-94,c), +(371,-94,l), (728,125,o), (732,531,o), (736,855,c) @@ -129,9 +124,7 @@ nodes = ( (655,249,o), (737,33,o), (897,-95,c), -(918,-58,o), -(964,-5,o), -(997,21,c), +(997,21,l), (855,123,o), (772,322,o), (733,534,c) @@ -143,10 +136,10 @@ nodes = ( (124,771,l), (124,631,l), (236,631,l), -(236,301,l), -(124,301,l), -(124,160,l), -(360,160,l), +(236,271,l), +(124,271,l), +(124,130,l), +(360,130,l), (360,771,l) ); }, @@ -154,8 +147,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(180,78,l), +(59,130,l), +(180,130,l), (180,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5455.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5455.glyph index 6a96a5e..57c71ca 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5455.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5455.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5455; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (100,727,l), (100,698,l), (272,698,l), -(272,229,l), -(100,229,l), -(100,199,l), -(301,199,l), +(272,176,l), +(100,176,l), +(100,146,l), +(301,146,l), (301,727,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (82,727,l), -(82,96,l), -(111,96,l), +(82,146,l), +(111,146,l), (111,727,l) ); }, @@ -59,9 +60,7 @@ nodes = ( (746,438,o), (624,228,o), (486,90,c), -(494,85,o), -(508,75,o), -(513,70,c), +(513,70,l), (649,213,o), (770,423,o), (856,646,c) @@ -80,10 +79,10 @@ nodes = ( (147,773,l), (147,640,l), (244,640,l), -(244,298,l), -(147,298,l), -(147,165,l), -(377,165,l), +(244,253,l), +(147,253,l), +(147,120,l), +(377,120,l), (377,773,l) ); }, @@ -91,8 +90,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(190,80,l), +(59,120,l), +(190,120,l), (190,773,l) ); }, @@ -129,9 +128,7 @@ nodes = ( (758,467,o), (657,289,o), (542,181,c), -(573,159,o), -(627,109,o), -(650,83,c), +(650,83,l), (767,208,o), (880,411,o), (951,611,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5456.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5456.glyph index 528d6b6..830d1d5 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5456.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5456.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5456; layers = ( { @@ -21,9 +22,7 @@ nodes = ( (409,330,o), (399,113,o), (306,-47,c), -(313,-50,o), -(325,-59,o), -(329,-65,c), +(329,-65,l), (426,99,o), (438,327,o), (438,489,cs), @@ -43,9 +42,8 @@ nodes = ( closed = 1; nodes = ( (874,512,l), -(874,504,ls), -(856,146,o), -(835,18,o), +(862,272,o), +(847,32,o), (807,-14,cs), (798,-25,o), (789,-26,o), @@ -53,20 +51,15 @@ nodes = ( (757,-26,o), (714,-25,o), (668,-21,c), -(672,-29,o), -(675,-42,o), -(676,-51,c), +(676,-51,l), (716,-55,o), (756,-56,o), (777,-55,cs), (802,-54,o), (818,-49,o), (831,-31,c), -(866,7,o), -(883,124,o), -(903,490,cs), -(904,497,o), -(904,512,o), +(878,20,o), +(890,252,o), (904,512,c) ); }, @@ -77,9 +70,7 @@ nodes = ( (649,360,o), (637,86,o), (451,-48,c), -(459,-52,o), -(471,-61,o), -(476,-66,c), +(476,-66,l), (666,76,o), (677,349,o), (682,682,c) @@ -91,10 +82,10 @@ nodes = ( (95,727,l), (95,698,l), (267,698,l), -(267,229,l), -(95,229,l), -(95,199,l), -(296,199,l), +(267,186,l), +(95,186,l), +(95,156,l), +(296,156,l), (296,727,l) ); }, @@ -102,8 +93,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,156,l), +(114,156,l), (114,727,l) ); } @@ -131,9 +122,7 @@ nodes = ( (391,350,o), (385,124,o), (299,-27,c), -(334,-40,o), -(397,-75,o), -(424,-97,c), +(424,-97,l), (516,68,o), (530,333,o), (530,509,cs), @@ -153,9 +142,8 @@ nodes = ( closed = 1; nodes = ( (815,560,l), -(815,532,ls), -(810,206,o), -(803,91,o), +(812,335,o), +(809,101,o), (786,66,cs), (777,53,o), (769,49,o), @@ -163,20 +151,15 @@ nodes = ( (739,49,o), (713,49,o), (684,52,c), -(704,16,o), -(719,-41,o), -(721,-80,c), +(721,-80,l), (765,-81,o), (804,-80,o), (832,-74,cs), (863,-67,o), (886,-56,o), (908,-22,cs), -(936,20,o), -(944,152,o), -(951,502,cs), -(952,519,o), -(952,560,o), +(944,32,o), +(946,268,o), (952,560,c) ); }, @@ -187,9 +170,7 @@ nodes = ( (622,426,o), (623,169,o), (490,6,c), -(526,-16,o), -(569,-58,o), -(591,-92,c), +(591,-92,l), (744,99,o), (759,391,o), (764,680,c) @@ -201,10 +182,10 @@ nodes = ( (114,773,l), (114,640,l), (229,640,l), -(229,298,l), -(114,298,l), -(114,165,l), -(358,165,l), +(229,288,l), +(114,288,l), +(114,155,l), +(358,155,l), (358,773,l) ); }, @@ -212,8 +193,8 @@ nodes = ( closed = 1; nodes = ( (53,773,l), -(53,80,l), -(183,80,l), +(53,155,l), +(183,155,l), (183,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5457.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5457.glyph index 7d3d174..a72737f 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5457.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5457.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5457; layers = ( { @@ -24,9 +25,7 @@ nodes = ( (645,229,o), (633,47,o), (331,-43,c), -(338,-49,o), -(347,-59,o), -(351,-65,c), +(351,-65,l), (658,30,o), (673,218,o), (678,652,c) @@ -51,10 +50,10 @@ nodes = ( (102,727,l), (102,698,l), (285,698,l), -(285,229,l), -(102,229,l), -(102,199,l), -(315,199,l), +(285,166,l), +(102,166,l), +(102,136,l), +(315,136,l), (315,727,l) ); }, @@ -62,8 +61,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,136,l), +(114,136,l), (114,727,l) ); } @@ -94,9 +93,7 @@ nodes = ( (598,218,o), (610,94,o), (332,22,c), -(357,-4,o), -(395,-60,o), -(407,-95,c), +(407,-95,l), (731,-5,o), (734,181,o), (733,640,c) @@ -121,10 +118,10 @@ nodes = ( (137,773,l), (137,640,l), (234,640,l), -(234,298,l), -(137,298,l), -(137,165,l), -(362,165,l), +(234,258,l), +(137,258,l), +(137,125,l), +(362,125,l), (362,773,l) ); }, @@ -132,8 +129,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(190,80,l), +(59,125,l), +(190,125,l), (190,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5458.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5458.glyph index 1d3d511..eef9a01 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5458.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5458.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5458; layers = ( { @@ -30,9 +31,7 @@ nodes = ( (482,157,o), (455,36,o), (77,-43,c), -(83,-50,o), -(90,-62,o), -(93,-69,c), +(93,-69,l), (480,16,o), (512,145,o), (512,249,cs), @@ -98,9 +97,7 @@ nodes = ( (413,154,o), (382,69,o), (48,11,c), -(84,-19,o), -(130,-75,o), -(149,-107,c), +(149,-107,l), (504,-26,o), (572,103,o), (572,210,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5459.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5459.glyph index a0549e6..79f6eb7 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5459.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5459.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5459; layers = ( { @@ -25,9 +26,7 @@ nodes = ( (482,342,o), (462,206,o), (210,110,c), -(217,105,o), -(225,95,o), -(230,87,c), +(230,87,l), (486,188,o), (512,329,o), (512,454,cs), @@ -56,9 +55,7 @@ nodes = ( (823,-35,o), (765,-36,o), (682,-33,c), -(688,-44,o), -(693,-55,o), -(695,-64,c), +(695,-64,l), (782,-64,o), (836,-65,o), (862,-59,cs), @@ -114,9 +111,7 @@ nodes = ( (421,342,o), (399,214,o), (210,127,c), -(244,103,o), -(293,55,o), -(315,23,c), +(315,23,l), (535,132,o), (561,306,o), (561,433,cs), @@ -145,9 +140,7 @@ nodes = ( (732,41,o), (671,41,o), (629,44,c), -(649,8,o), -(671,-51,o), -(678,-91,c), +(678,-91,l), (753,-91,o), (812,-90,o), (858,-69,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni545B_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni545B_.glyph index 75477af..4d18edd 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni545B_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni545B_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni545B; layers = ( { @@ -11,9 +12,7 @@ nodes = ( (561,697,o), (446,572,o), (326,494,c), -(332,488,o), -(344,476,o), -(348,471,c), +(348,471,l), (468,556,o), (584,681,o), (656,825,c) @@ -26,9 +25,7 @@ nodes = ( (680,669,o), (814,535,o), (922,474,c), -(928,483,o), -(938,494,o), -(946,500,c), +(946,500,l), (836,555,o), (702,684,o), (634,801,c) @@ -57,9 +54,7 @@ nodes = ( (867,-43,o), (878,-7,o), (885,132,c), -(875,135,o), -(864,140,o), -(856,147,c), +(856,147,l), (850,12,o), (841,-14,o), (785,-14,cs), @@ -76,9 +71,8 @@ nodes = ( closed = 1; nodes = ( (763,476,l), -(763,471,ls), -(755,295,o), -(746,231,o), +(758,358,o), +(753,237,o), (729,215,cs), (722,208,o), (714,207,o), @@ -86,20 +80,15 @@ nodes = ( (678,207,o), (622,207,o), (564,213,c), -(570,204,o), -(573,192,o), -(574,184,c), +(574,184,l), (625,180,o), (678,180,o), (702,180,cs), (728,180,o), (741,184,o), (754,197,cs), -(774,219,o), -(782,280,o), -(791,458,c), -(792,464,o), -(792,476,o), +(780,225,o), +(785,337,o), (792,476,c) ); }, @@ -109,10 +98,10 @@ nodes = ( (102,734,l), (102,705,l), (288,705,l), -(288,199,l), -(102,199,l), -(102,170,l), -(318,170,l), +(288,163,l), +(102,163,l), +(102,134,l), +(318,134,l), (318,734,l) ); }, @@ -120,8 +109,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,134,l), +(117,134,l), (117,734,l) ); } @@ -139,9 +128,7 @@ nodes = ( (547,733,o), (436,608,o), (316,534,c), -(341,501,o), -(380,427,o), -(394,394,c), +(394,394,l), (535,492,o), (666,655,o), (743,827,c) @@ -154,9 +141,7 @@ nodes = ( (663,638,o), (771,491,o), (887,404,c), -(910,441,o), -(957,494,o), -(991,522,c), +(991,522,l), (878,590,o), (765,711,o), (707,827,c) @@ -185,9 +170,7 @@ nodes = ( (908,-78,o), (948,-32,o), (965,122,c), -(926,131,o), -(866,154,o), -(835,176,c), +(835,176,l), (828,72,o), (820,54,o), (774,54,cs), @@ -204,9 +187,8 @@ nodes = ( closed = 1; nodes = ( (721,510,l), -(721,491,ls), -(720,340,o), -(720,286,o), +(720,399,o), +(722,289,o), (710,272,cs), (703,263,o), (694,261,o), @@ -214,20 +196,15 @@ nodes = ( (667,261,o), (641,262,o), (610,265,c), -(629,233,o), -(643,181,o), -(646,143,c), +(646,143,l), (691,143,o), (733,144,o), (758,148,cs), (787,153,o), (810,162,o), (831,189,cs), -(852,218,o), -(856,294,o), -(857,464,cs), -(858,479,o), -(858,510,o), +(856,224,o), +(856,318,o), (858,510,c) ); }, @@ -237,10 +214,10 @@ nodes = ( (131,742,l), (131,602,l), (231,602,l), -(231,272,l), -(131,272,l), -(131,131,l), -(358,131,l), +(231,232,l), +(131,232,l), +(131,91,l), +(358,91,l), (358,742,l) ); }, @@ -248,8 +225,8 @@ nodes = ( closed = 1; nodes = ( (59,742,l), -(59,49,l), -(186,49,l), +(59,91,l), +(186,91,l), (186,742,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni545C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni545C_.glyph index fe9403d..096eaa6 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni545C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni545C_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni545C; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (114,721,l), (114,692,l), (300,692,l), -(300,220,l), -(114,220,l), -(114,190,l), -(329,190,l), +(300,203,l), +(114,203,l), +(114,173,l), +(329,173,l), (329,721,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (98,721,l), -(98,113,l), -(128,113,l), +(98,173,l), +(128,173,l), (128,721,l) ); }, @@ -30,9 +31,8 @@ nodes = ( closed = 1; nodes = ( (889,358,l), -(889,351,ls), -(880,92,o), -(870,2,o), +(883,186,o), +(877,10,o), (853,-19,cs), (846,-28,o), (837,-29,o), @@ -40,20 +40,15 @@ nodes = ( (806,-29,o), (760,-29,o), (710,-24,c), -(716,-33,o), -(719,-45,o), -(720,-54,c), +(720,-54,l), (762,-57,o), (806,-58,o), (827,-57,cs), (852,-57,o), (866,-52,o), (877,-37,c), -(901,-10,o), -(909,75,o), -(918,338,cs), -(918,344,o), -(918,358,o), +(908,-2,o), +(912,173,o), (918,358,c) ); }, @@ -74,9 +69,8 @@ nodes = ( closed = 1; nodes = ( (829,725,l), -(829,719,ls), -(819,566,o), -(810,509,o), +(822,620,o), +(816,516,o), (795,493,cs), (788,486,o), (780,485,o), @@ -84,20 +78,15 @@ nodes = ( (752,485,o), (709,485,o), (664,490,c), -(669,481,o), -(672,470,o), -(672,462,c), +(672,462,l), (712,458,o), (753,458,o), (771,458,cs), (794,459,o), (807,463,o), (818,474,cs), -(838,494,o), -(848,550,o), -(858,707,cs), -(859,713,o), -(859,725,o), +(845,501,o), +(851,603,o), (859,725,c) ); }, @@ -136,10 +125,10 @@ nodes = ( (144,763,l), (144,629,l), (250,629,l), -(250,293,l), -(144,293,l), -(144,159,l), -(380,159,l), +(250,263,l), +(144,263,l), +(144,129,l), +(380,129,l), (380,763,l) ); }, @@ -147,8 +136,8 @@ nodes = ( closed = 1; nodes = ( (68,763,l), -(68,83,l), -(196,83,l), +(68,129,l), +(196,129,l), (196,763,l) ); }, @@ -156,9 +145,8 @@ nodes = ( closed = 1; nodes = ( (810,376,l), -(810,355,ls), -(806,141,o), -(801,57,o), +(810,215,o), +(808,65,o), (785,38,cs), (776,28,o), (765,26,o), @@ -166,20 +154,15 @@ nodes = ( (728,26,o), (687,26,o), (643,30,c), -(665,-2,o), -(681,-53,o), -(683,-89,c), +(683,-89,l), (736,-91,o), (787,-90,o), (819,-86,cs), (854,-81,o), (882,-71,o), (906,-41,cs), -(933,-7,o), -(942,89,o), -(947,326,cs), -(947,342,o), -(948,376,o), +(940,2,o), +(943,157,o), (948,376,c) ); }, @@ -200,9 +183,8 @@ nodes = ( closed = 1; nodes = ( (775,762,l), -(775,744,ls), -(769,603,o), -(761,547,o), +(771,657,o), +(768,555,o), (748,532,cs), (739,523,o), (730,521,o), @@ -210,20 +192,15 @@ nodes = ( (698,521,o), (665,521,o), (629,525,c), -(649,492,o), -(663,441,o), -(666,404,c), +(666,404,l), (714,403,o), (758,404,o), (785,408,cs), (817,412,o), (843,421,o), (865,447,cs), -(891,477,o), -(902,552,o), -(910,714,c), -(912,730,o), -(913,762,o), +(896,483,o), +(904,589,o), (913,762,c) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5462.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5462.glyph index 074db4f..6e8a1ee 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5462.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5462.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5462; layers = ( { @@ -12,9 +13,7 @@ nodes = ( (410,288,o), (397,92,o), (275,-47,c), -(282,-51,o), -(294,-59,o), -(299,-64,c), +(299,-64,l), (424,78,o), (439,283,o), (439,440,cs), @@ -35,9 +34,7 @@ nodes = ( (924,-57,o), (935,-23,o), (941,102,c), -(931,104,o), -(919,109,o), -(912,116,c), +(912,116,l), (907,-5,o), (900,-27,o), (854,-27,cs), @@ -84,10 +81,10 @@ nodes = ( (96,734,l), (96,705,l), (271,705,l), -(271,199,l), -(96,199,l), -(96,170,l), -(300,170,l), +(271,172,l), +(96,172,l), +(96,143,l), +(300,143,l), (300,734,l) ); }, @@ -95,8 +92,8 @@ nodes = ( closed = 1; nodes = ( (82,734,l), -(82,94,l), -(111,94,l), +(82,143,l), +(111,143,l), (111,734,l) ); } @@ -115,9 +112,7 @@ nodes = ( (415,319,o), (406,123,o), (296,-7,c), -(329,-22,o), -(387,-59,o), -(411,-82,c), +(411,-82,l), (530,60,o), (548,299,o), (548,467,cs), @@ -138,9 +133,7 @@ nodes = ( (921,-85,o), (955,-37,o), (968,126,c), -(932,134,o), -(874,157,o), -(846,180,c), +(846,180,l), (842,62,o), (837,42,o), (810,42,cs), @@ -187,10 +180,10 @@ nodes = ( (128,771,l), (128,631,l), (240,631,l), -(240,301,l), -(128,301,l), -(128,160,l), -(365,160,l), +(240,281,l), +(128,281,l), +(128,140,l), +(365,140,l), (365,771,l) ); }, @@ -198,8 +191,8 @@ nodes = ( closed = 1; nodes = ( (54,771,l), -(54,78,l), -(183,78,l), +(54,140,l), +(183,140,l), (183,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5464.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5464.glyph index 63be7bc..b3bad1c 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5464.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5464.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5464; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (104,727,l), (104,698,l), (296,698,l), -(296,229,l), -(104,229,l), -(104,199,l), -(326,199,l), +(296,186,l), +(104,186,l), +(104,156,l), +(326,156,l), (326,727,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (93,727,l), -(93,96,l), -(123,96,l), +(93,156,l), +(123,156,l), (123,727,l) ); }, @@ -96,16 +97,12 @@ closed = 1; nodes = ( (827,364,l), (827,355,l), -(780,266,o), -(675,126,o), -(611,65,c), +(611,65,l), (618,60,o), (627,51,o), (633,44,c), -(698,111,o), -(805,249,o), -(859,354,c), -(839,366,l), +(859,354,l), +(842,364,l), (833,364,l) ); } @@ -122,10 +119,10 @@ nodes = ( (129,773,l), (129,640,l), (225,640,l), -(225,298,l), -(129,298,l), -(129,165,l), -(350,165,l), +(225,248,l), +(129,248,l), +(129,115,l), +(350,115,l), (350,773,l) ); }, @@ -133,8 +130,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(184,80,l), +(59,115,l), +(184,115,l), (184,773,l) ); }, @@ -208,16 +205,12 @@ closed = 1; nodes = ( (774,388,l), (774,360,l), -(737,286,o), -(640,170,o), -(570,106,c), +(570,106,l), (601,86,o), (651,45,o), (676,20,c), -(755,102,o), -(859,221,o), -(920,330,c), -(818,396,l), +(920,330,l), +(830,388,l), (795,388,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5466.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5466.glyph index 3640534..e176ee9 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5466.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5466.glyph @@ -1,7 +1,18 @@ { +color = 4; glyphname = uni5466; layers = ( { +guides = ( +{ +angle = 190.5174; +pos = (583,128); +}, +{ +angle = 187.5946; +pos = (525,432); +} +); layerId = m01; shapes = ( { @@ -17,9 +28,8 @@ nodes = ( closed = 1; nodes = ( (896,614,l), -(896,605,ls), -(883,178,o), -(868,30,o), +(888,333,o), +(877,42,o), (844,-2,c), (836,-15,o), (828,-16,o), @@ -27,20 +37,15 @@ nodes = ( (798,-16,o), (762,-16,o), (720,-13,c), -(725,-20,o), -(727,-33,o), -(728,-43,c), +(728,-43,l), (762,-45,o), (797,-46,o), (818,-45,cs), (841,-44,o), (857,-38,o), (869,-20,cs), -(900,20,o), -(912,150,o), -(925,591,cs), -(925,597,o), -(925,614,o), +(910,33,o), +(917,314,o), (925,614,c) ); }, @@ -51,9 +56,7 @@ nodes = ( (718,492,o), (713,124,o), (531,-53,c), -(540,-56,o), -(554,-64,o), -(560,-68,c), +(560,-68,l), (743,118,o), (746,481,o), (748,830,c) @@ -75,9 +78,7 @@ nodes = ( { closed = 1; nodes = ( -(325,409,o), -(352,421,o), -(352,421,c), +(352,421,l), (352,422,l), (409,518,o), (464,655,o), @@ -89,18 +90,14 @@ nodes = ( (342,461,o), (328,433,o), (314,431,c), -(318,423,o), -(323,407,o), -(325,399,c) +(323,405,l) ); }, { closed = 1; nodes = ( -(325,399,l), -(337,406,o), -(360,410,o), -(525,432,c), +(323,405,l), +(525,432,l), (526,439,o), (530,453,o), (533,461,c), @@ -111,9 +108,7 @@ nodes = ( { closed = 1; nodes = ( -(305,81,o), -(332,91,o), -(332,91,c), +(332,91,l), (332,92,l), (425,211,o), (516,377,o), @@ -125,18 +120,14 @@ nodes = ( (333,139,o), (311,106,o), (294,102,c), -(298,94,o), -(303,79,o), -(305,71,c) +(303,76,l) ); }, { closed = 1; nodes = ( -(305,71,l), -(320,79,o), -(346,84,o), -(583,128,c), +(303,76,l), +(583,128,l), (580,133,o), (576,145,o), (574,153,c), @@ -148,8 +139,8 @@ nodes = ( closed = 1; nodes = ( (85,751,l), -(85,84,l), -(115,84,l), +(85,143,l), +(115,143,l), (115,751,l) ); }, @@ -159,10 +150,10 @@ nodes = ( (104,751,l), (104,721,l), (261,721,l), -(261,213,l), -(104,213,l), -(104,183,l), -(290,183,l), +(261,173,l), +(104,173,l), +(104,143,l), +(290,143,l), (290,751,l) ); } @@ -171,6 +162,16 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 184.6669; +pos = (554,399); +}, +{ +angle = 195.7247; +pos = (610,114); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -186,9 +187,8 @@ nodes = ( closed = 1; nodes = ( (834,642,l), -(834,612,ls), -(827,208,o), -(819,74,o), +(830,371,o), +(826,86,o), (803,45,cs), (794,30,o), (787,26,o), @@ -196,20 +196,15 @@ nodes = ( (760,26,o), (743,26,o), (721,28,c), -(738,-4,o), -(751,-54,o), -(752,-88,c), +(752,-88,l), (789,-89,o), (821,-89,o), (846,-82,cs), (874,-75,o), (894,-64,o), (914,-31,cs), -(941,13,o), -(949,160,o), -(957,585,cs), -(958,601,o), -(958,642,o), +(949,25,o), +(952,304,o), (958,642,c) ); }, @@ -220,9 +215,7 @@ nodes = ( (684,498,o), (694,183,o), (562,-14,c), -(593,-30,o), -(634,-67,o), -(653,-94,c), +(653,-94,l), (803,129,o), (807,473,o), (809,855,c) @@ -244,9 +237,7 @@ nodes = ( { closed = 1; nodes = ( -(350,392,o), -(435,437,o), -(435,437,c), +(435,437,l), (435,439,l), (487,541,o), (544,689,o), @@ -258,18 +249,14 @@ nodes = ( (343,517,o), (328,495,o), (307,488,c), -(322,455,o), -(343,393,o), -(350,368,c) +(346,382,l) ); }, { closed = 1; nodes = ( -(350,368,l), -(371,378,o), -(407,387,o), -(554,399,c), +(346,382,l), +(554,399,l), (558,427,o), (571,478,o), (584,512,c), @@ -280,9 +267,7 @@ nodes = ( { closed = 1; nodes = ( -(341,46,o), -(415,89,o), -(415,89,c), +(415,89,l), (415,92,l), (505,214,o), (600,387,o), @@ -294,18 +279,14 @@ nodes = ( (344,177,o), (325,151,o), (298,143,c), -(314,110,o), -(335,48,o), -(341,24,c) +(335,37,l) ); }, { closed = 1; nodes = ( -(341,24,l), -(365,41,o), -(404,56,o), -(610,114,c), +(335,37,l), +(610,114,l), (598,141,o), (583,187,o), (574,221,c), @@ -317,8 +298,8 @@ nodes = ( closed = 1; nodes = ( (56,764,l), -(56,8,l), -(164,8,l), +(56,79,l), +(164,79,l), (164,764,l) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5468.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5468.glyph index f0c4b8e..b3e0287 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5468.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5468.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5468; layers = ( { @@ -39,9 +40,7 @@ nodes = ( (169,320,o), (157,103,o), (43,-57,c), -(50,-61,o), -(61,-71,o), -(66,-77,c), +(66,-77,l), (183,87,o), (198,316,o), (198,482,cs), @@ -59,9 +58,7 @@ nodes = ( (784,-40,o), (720,-41,o), (642,-39,c), -(647,-48,o), -(653,-62,o), -(655,-69,c), +(655,-69,l), (748,-69,o), (798,-69,o), (822,-64,cs), @@ -86,10 +83,10 @@ nodes = ( (329,318,l), (329,288,l), (671,288,l), -(671,95,l), -(329,95,l), -(329,66,l), -(700,66,l), +(671,65,l), +(329,65,l), +(329,36,l), +(700,36,l), (700,318,l) ); }, @@ -97,8 +94,8 @@ nodes = ( closed = 1; nodes = ( (310,318,l), -(310,9,l), -(339,9,l), +(310,36,l), +(339,36,l), (339,318,l) ); } @@ -144,9 +141,7 @@ nodes = ( (115,303,o), (108,116,o), (17,-7,c), -(49,-24,o), -(111,-72,o), -(135,-99,c), +(135,-99,l), (242,41,o), (259,281,o), (259,445,cs), @@ -164,9 +159,7 @@ nodes = ( (729,38,o), (671,37,o), (627,40,c), -(646,5,o), -(666,-56,o), -(671,-94,c), +(671,-94,l), (756,-94,o), (815,-92,o), (858,-70,cs), @@ -202,8 +195,8 @@ nodes = ( closed = 1; nodes = ( (316,299,l), -(316,-34,l), -(447,-34,l), +(316,20,l), +(447,20,l), (447,299,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5471.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5471.glyph index 26020f1..e6da522 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5471.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5471.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni5471; layers = ( { +guides = ( +{ +angle = 195.51; +pos = (756,46); +} +); layerId = m01; shapes = ( { @@ -26,9 +33,7 @@ nodes = ( (788,429,o), (827,96,o), (941,-65,c), -(947,-58,o), -(959,-48,o), -(966,-43,c), +(966,-43,l), (857,105,o), (815,440,o), (796,795,c) @@ -55,9 +60,7 @@ nodes = ( (394,344,o), (383,118,o), (278,-50,c), -(285,-54,o), -(297,-63,o), -(302,-68,c), +(302,-68,l), (409,104,o), (424,340,o), (424,508,cs), @@ -67,10 +70,8 @@ nodes = ( { closed = 1; nodes = ( -(508,-30,l), -(523,-20,o), -(547,-12,o), -(756,46,c), +(503,-24,l), +(756,46,l), (753,52,o), (750,65,o), (749,73,c), @@ -81,9 +82,7 @@ nodes = ( { closed = 1; nodes = ( -(508,-23,o), -(514,-15,o), -(525,-12,c), +(525,-12,l), (610,120,o), (610,286,o), (610,428,cs), @@ -93,9 +92,7 @@ nodes = ( (580,280,o), (581,120,o), (488,-7,c), -(494,-13,o), -(504,-23,o), -(508,-30,c) +(503,-24,l) ); }, { @@ -104,10 +101,10 @@ nodes = ( (91,727,l), (91,698,l), (266,698,l), -(266,229,l), -(91,229,l), -(91,199,l), -(295,199,l), +(266,189,l), +(91,189,l), +(91,159,l), +(295,159,l), (295,727,l) ); }, @@ -115,8 +112,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -125,6 +122,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 196.336; +pos = (779,14); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -149,9 +152,7 @@ nodes = ( (765,421,o), (785,112,o), (881,-82,c), -(905,-44,o), -(953,7,o), -(986,31,c), +(986,31,l), (904,188,o), (883,481,o), (873,763,c) @@ -178,9 +179,7 @@ nodes = ( (393,434,o), (386,173,o), (293,-6,c), -(321,-18,o), -(377,-59,o), -(399,-81,c), +(399,-81,l), (500,113,o), (517,420,o), (517,602,cs), @@ -190,10 +189,8 @@ nodes = ( { closed = 1; nodes = ( -(547,-69,l), -(569,-53,o), -(605,-37,o), -(779,14,c), +(536,-57,l), +(779,14,l), (770,42,o), (759,91,o), (755,126,c), @@ -204,9 +201,7 @@ nodes = ( { closed = 1; nodes = ( -(547,-46,o), -(560,-14,o), -(583,-2,c), +(583,-2,l), (697,215,o), (703,494,o), (703,665,cs), @@ -216,9 +211,7 @@ nodes = ( (582,488,o), (579,213,o), (454,30,c), -(479,11,o), -(531,-43,o), -(547,-69,c) +(536,-57,l) ); }, { @@ -227,10 +220,10 @@ nodes = ( (140,773,l), (140,640,l), (234,640,l), -(234,298,l), -(140,298,l), -(140,165,l), -(345,165,l), +(234,288,l), +(140,288,l), +(140,155,l), +(345,155,l), (345,773,l) ); }, @@ -238,8 +231,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(177,80,l), +(59,155,l), +(177,155,l), (177,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5472.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5472.glyph index 2ca260b..328019a 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5472.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5472.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5472; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (107,751,l), (107,721,l), (252,721,l), -(252,225,l), -(107,225,l), -(107,195,l), -(281,195,l), +(252,185,l), +(107,185,l), +(107,155,l), +(281,155,l), (281,751,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (90,751,l), -(90,84,l), -(120,84,l), +(90,155,l), +(120,155,l), (120,751,l) ); }, @@ -80,9 +81,7 @@ nodes = ( (922,-37,o), (929,5,o), (933,137,c), -(923,139,o), -(913,145,o), -(904,152,c), +(904,152,l), (901,25,o), (897,-8,o), (868,-8,cs), @@ -121,10 +120,10 @@ nodes = ( (138,791,l), (138,678,l), (208,678,l), -(208,249,l), -(138,249,l), -(138,135,l), -(321,135,l), +(208,221,l), +(138,221,l), +(138,107,l), +(321,107,l), (321,791,l) ); }, @@ -132,8 +131,8 @@ nodes = ( closed = 1; nodes = ( (55,791,l), -(55,57,l), -(168,57,l), +(55,107,l), +(168,107,l), (168,791,l) ); }, @@ -191,9 +190,7 @@ nodes = ( (944,-64,o), (971,2,o), (981,169,c), -(946,177,o), -(897,201,o), -(868,224,c), +(868,224,l), (865,92,o), (863,55,o), (849,55,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5473.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5473.glyph index 94240ee..c36e498 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5473.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5473.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5473; layers = ( { @@ -38,9 +39,7 @@ nodes = ( (542,239,o), (420,80,o), (300,8,c), -(308,2,o), -(317,-7,o), -(322,-15,c), +(322,-15,l), (441,64,o), (565,224,o), (629,389,c) @@ -53,9 +52,7 @@ nodes = ( (711,231,o), (821,71,o), (925,-10,c), -(931,-2,o), -(941,9,o), -(948,14,c), +(948,14,l), (844,86,o), (734,243,o), (677,396,c) @@ -67,10 +64,10 @@ nodes = ( (98,734,l), (98,705,l), (279,705,l), -(279,199,l), -(98,199,l), -(98,170,l), -(308,170,l), +(279,173,l), +(98,173,l), +(98,144,l), +(308,144,l), (308,734,l) ); }, @@ -78,8 +75,8 @@ nodes = ( closed = 1; nodes = ( (84,734,l), -(84,94,l), -(113,94,l), +(84,144,l), +(113,144,l), (113,734,l) ); } @@ -124,9 +121,7 @@ nodes = ( (541,264,o), (442,145,o), (320,83,c), -(352,55,o), -(396,2,o), -(418,-32,c), +(418,-32,l), (548,49,o), (646,192,o), (706,355,c) @@ -139,9 +134,7 @@ nodes = ( (698,208,o), (780,55,o), (879,-36,c), -(904,3,o), -(952,57,o), -(987,85,c), +(987,85,l), (889,155,o), (801,277,o), (754,394,c) @@ -153,10 +146,10 @@ nodes = ( (131,771,l), (131,631,l), (249,631,l), -(249,301,l), -(131,301,l), -(131,160,l), -(380,160,l), +(249,291,l), +(131,291,l), +(131,150,l), +(380,150,l), (380,771,l) ); }, @@ -164,8 +157,8 @@ nodes = ( closed = 1; nodes = ( (56,771,l), -(56,78,l), -(188,78,l), +(56,150,l), +(188,150,l), (188,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5475.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5475.glyph index fda7e92..aa58d74 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5475.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5475.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5475; layers = ( { @@ -24,9 +25,7 @@ nodes = ( (787,-39,o), (718,-40,o), (634,-38,c), -(640,-48,o), -(645,-62,o), -(648,-69,c), +(648,-69,l), (742,-70,o), (798,-70,o), (825,-65,cs), @@ -40,8 +39,8 @@ nodes = ( closed = 1; nodes = ( (433,569,l), -(433,136,l), -(463,136,l), +(433,178,l), +(463,178,l), (463,569,l) ); }, @@ -51,10 +50,10 @@ nodes = ( (448,569,l), (448,539,l), (672,539,l), -(672,237,l), -(448,237,l), -(448,208,l), -(702,208,l), +(672,207,l), +(448,207,l), +(448,178,l), +(702,178,l), (702,569,l) ); }, @@ -64,10 +63,10 @@ nodes = ( (102,734,l), (102,705,l), (291,705,l), -(291,199,l), -(102,199,l), -(102,170,l), -(321,170,l), +(291,163,l), +(102,163,l), +(102,134,l), +(321,134,l), (321,734,l) ); }, @@ -75,8 +74,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,134,l), +(117,134,l), (117,734,l) ); } @@ -107,9 +106,7 @@ nodes = ( (719,50,o), (653,51,o), (597,53,c), -(617,12,o), -(639,-53,o), -(645,-95,c), +(645,-95,l), (735,-96,o), (803,-91,o), (851,-68,cs), @@ -123,8 +120,8 @@ nodes = ( closed = 1; nodes = ( (415,583,l), -(415,128,l), -(535,128,l), +(415,165,l), +(535,165,l), (535,583,l) ); }, @@ -134,10 +131,10 @@ nodes = ( (489,583,l), (489,457,l), (595,457,l), -(595,310,l), -(489,310,l), -(489,185,l), -(715,185,l), +(595,290,l), +(489,290,l), +(489,165,l), +(715,165,l), (715,583,l) ); }, @@ -147,10 +144,10 @@ nodes = ( (133,771,l), (133,631,l), (248,631,l), -(248,301,l), -(133,301,l), -(133,160,l), -(378,160,l), +(248,271,l), +(133,271,l), +(133,130,l), +(378,130,l), (378,771,l) ); }, @@ -158,8 +155,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(186,78,l), +(59,130,l), +(186,130,l), (186,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5476.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5476.glyph index 681c04e..5838e58 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5476.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5476.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5476; layers = ( { @@ -21,13 +22,11 @@ nodes = ( (864,311,o), (718,55,o), (531,-50,c), -(539,-56,o), -(548,-66,o), -(553,-74,c), +(553,-74,l), (744,41,o), (890,296,o), (930,736,c), -(913,741,l), +(915,739,l), (907,739,l) ); }, @@ -61,29 +60,25 @@ nodes = ( (549,261,o), (427,58,o), (265,-29,c), -(273,-35,o), -(281,-47,o), -(286,-55,c), +(286,-55,l), (455,43,o), (577,246,o), (612,618,c), -(593,623,l), +(595,621,l), (587,621,l) ); }, { closed = 1; nodes = ( -(643,706,l), -(683,366,o), -(763,71,o), +(641,714,l), +(681,371,o), +(762,72,o), (928,-66,c), -(934,-59,o), -(944,-49,o), -(952,-44,c), -(788,82,o), -(708,377,o), -(670,709,c) +(952,-44,l), +(787,83,o), +(706,382,o), +(668,717,c) ); }, { @@ -92,10 +87,10 @@ nodes = ( (98,720,l), (98,691,l), (249,691,l), -(249,246,l), -(98,246,l), -(98,217,l), -(279,217,l), +(249,206,l), +(98,206,l), +(98,177,l), +(279,177,l), (279,720,l) ); }, @@ -103,8 +98,8 @@ nodes = ( closed = 1; nodes = ( (84,720,l), -(84,133,l), -(113,133,l), +(84,177,l), +(113,177,l), (113,720,l) ); }, @@ -112,13 +107,9 @@ nodes = ( closed = 1; nodes = ( (366,279,l), -(406,412,o), -(459,652,o), -(481,823,c), +(481,823,l), (452,825,l), -(431,659,o), -(379,418,o), -(337,286,c) +(337,286,l) ); } ); @@ -145,13 +136,11 @@ nodes = ( (824,378,o), (746,108,o), (569,-3,c), -(596,-26,o), -(629,-68,o), -(649,-99,c), +(649,-99,l), (858,52,o), (942,312,o), (954,782,c), -(877,793,l), +(898,790,l), (856,790,l) ); }, @@ -185,29 +174,25 @@ nodes = ( (522,318,o), (444,114,o), (282,33,c), -(305,11,o), -(335,-33,o), -(350,-62,c), +(350,-62,l), (542,51,o), (627,259,o), (644,645,c), -(576,654,l), +(585,652,l), (556,652,l) ); }, { closed = 1; nodes = ( -(649,658,l), -(675,326,o), -(723,57,o), +(647,679,l), +(673,338,o), +(722,61,o), (896,-88,c), -(915,-53,o), -(957,-2,o), -(986,22,c), -(828,136,o), -(779,386,o), -(757,668,c) +(986,22,l), +(827,140,o), +(777,398,o), +(755,689,c) ); }, { @@ -216,10 +201,10 @@ nodes = ( (127,762,l), (127,633,l), (200,633,l), -(200,303,l), -(127,303,l), -(127,174,l), -(309,174,l), +(200,263,l), +(127,263,l), +(127,134,l), +(309,134,l), (309,762,l) ); }, @@ -227,8 +212,8 @@ nodes = ( closed = 1; nodes = ( (53,762,l), -(53,82,l), -(164,82,l), +(53,134,l), +(164,134,l), (164,762,l) ); }, @@ -236,13 +221,9 @@ nodes = ( closed = 1; nodes = ( (437,266,l), -(472,417,o), -(510,653,o), -(523,842,c), +(523,842,l), (408,848,l), -(398,667,o), -(362,435,o), -(325,293,c) +(325,293,l) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5477.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5477.glyph index 4047e0c..6f80047 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5477.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5477.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5477; layers = ( { @@ -8,31 +9,31 @@ shapes = ( closed = 1; nodes = ( (399,771,l), -(399,186,l), -(428,186,l), +(399,201,l), +(428,201,l), (428,742,l), (875,742,l), -(875,192,l), -(905,192,l), +(875,201,l), +(905,201,l), (905,771,l) ); }, { closed = 1; nodes = ( -(414,524,l), -(414,495,l), -(886,495,l), -(886,524,l) +(414,504,l), +(414,475,l), +(886,475,l), +(886,504,l) ); }, { closed = 1; nodes = ( -(414,271,l), -(414,241,l), -(886,241,l), -(886,271,l) +(414,231,l), +(414,201,l), +(886,201,l), +(886,231,l) ); }, { @@ -50,10 +51,10 @@ nodes = ( (102,734,l), (102,705,l), (268,705,l), -(268,199,l), -(102,199,l), -(102,170,l), -(297,170,l), +(268,159,l), +(102,159,l), +(102,130,l), +(297,130,l), (297,734,l) ); }, @@ -61,8 +62,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,130,l), +(117,130,l), (117,734,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5478.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5478.glyph index bd8f607..38a3355 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5478.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5478.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5478; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (95,727,l), (95,698,l), (284,698,l), -(284,229,l), -(95,229,l), -(95,199,l), -(314,199,l), +(284,166,l), +(95,166,l), +(95,136,l), +(314,136,l), (314,727,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,136,l), +(114,136,l), (114,727,l) ); }, @@ -51,9 +52,7 @@ nodes = ( (623,540,o), (493,376,o), (336,275,c), -(344,269,o), -(356,257,o), -(361,252,c), +(361,252,l), (516,361,o), (648,523,o), (729,724,c) @@ -95,10 +94,10 @@ nodes = ( (142,773,l), (142,640,l), (230,640,l), -(230,298,l), -(142,298,l), -(142,165,l), -(363,165,l), +(230,268,l), +(142,268,l), +(142,135,l), +(363,135,l), (363,773,l) ); }, @@ -106,8 +105,8 @@ nodes = ( closed = 1; nodes = ( (53,773,l), -(53,80,l), -(184,80,l), +(53,135,l), +(184,135,l), (184,773,l) ); }, @@ -136,9 +135,7 @@ nodes = ( (578,567,o), (469,424,o), (342,340,c), -(372,314,o), -(424,256,o), -(446,227,c), +(446,227,l), (579,330,o), (703,500,o), (776,683,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni547B_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni547B_.glyph index b4db7de..844dd32 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni547B_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni547B_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni547B; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (101,727,l), (101,698,l), (276,698,l), -(276,229,l), -(101,229,l), -(101,199,l), -(305,199,l), +(276,219,l), +(101,219,l), +(101,189,l), +(305,189,l), (305,727,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (90,727,l), -(90,96,l), -(120,96,l), +(90,189,l), +(120,189,l), (120,727,l) ); }, @@ -30,31 +31,31 @@ nodes = ( closed = 1; nodes = ( (404,694,l), -(404,159,l), -(433,159,l), +(404,178,l), +(433,178,l), (433,665,l), (892,665,l), -(892,164,l), -(921,164,l), +(892,178,l), +(921,178,l), (921,694,l) ); }, { closed = 1; nodes = ( -(423,473,l), -(423,443,l), -(909,443,l), -(909,473,l) +(423,453,l), +(423,423,l), +(909,423,l), +(909,453,l) ); }, { closed = 1; nodes = ( -(423,247,l), -(423,218,l), -(909,218,l), -(909,247,l) +(423,207,l), +(423,178,l), +(909,178,l), +(909,207,l) ); }, { @@ -79,10 +80,10 @@ nodes = ( (136,773,l), (136,640,l), (233,640,l), -(233,301,l), -(136,301,l), -(136,168,l), -(364,168,l), +(233,281,l), +(136,281,l), +(136,148,l), +(364,148,l), (364,773,l) ); }, @@ -90,8 +91,8 @@ nodes = ( closed = 1; nodes = ( (57,773,l), -(57,80,l), -(188,80,l), +(57,148,l), +(188,148,l), (188,773,l) ); }, @@ -99,8 +100,8 @@ nodes = ( closed = 1; nodes = ( (405,724,l), -(405,131,l), -(536,131,l), +(405,137,l), +(536,137,l), (536,591,l), (808,591,l), (808,137,l), @@ -111,19 +112,19 @@ nodes = ( { closed = 1; nodes = ( -(483,517,l), -(483,388,l), -(871,388,l), -(871,517,l) +(483,497,l), +(483,368,l), +(871,368,l), +(871,497,l) ); }, { closed = 1; nodes = ( -(483,310,l), -(483,177,l), -(871,177,l), -(871,310,l) +(483,270,l), +(483,137,l), +(871,137,l), +(871,270,l) ); }, { @@ -136,7 +137,6 @@ nodes = ( ); } ); -vertWidth = 1000; width = 1000; } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni547C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni547C_.glyph index 4fe989a..650d92f 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni547C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni547C_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni547C; layers = ( { @@ -24,9 +25,7 @@ nodes = ( (589,-37,o), (532,-38,o), (462,-36,c), -(468,-45,o), -(473,-58,o), -(475,-65,c), +(475,-65,l), (561,-65,o), (604,-65,o), (626,-60,cs), @@ -43,9 +42,7 @@ nodes = ( (765,770,o), (543,742,o), (366,726,c), -(370,719,o), -(374,709,o), -(376,702,c), +(376,702,l), (556,717,o), (775,744,o), (901,780,c) @@ -83,10 +80,10 @@ nodes = ( (100,721,l), (100,692,l), (260,692,l), -(260,247,l), -(100,247,l), -(100,218,l), -(289,218,l), +(260,217,l), +(100,217,l), +(100,188,l), +(289,188,l), (289,721,l) ); }, @@ -94,8 +91,8 @@ nodes = ( closed = 1; nodes = ( (84,721,l), -(84,113,l), -(114,113,l), +(84,188,l), +(114,188,l), (114,721,l) ); } @@ -126,9 +123,7 @@ nodes = ( (554,43,o), (495,43,o), (444,46,c), -(465,8,o), -(488,-55,o), -(494,-95,c), +(494,-95,l), (576,-95,o), (638,-91,o), (682,-68,cs), @@ -145,9 +140,7 @@ nodes = ( (730,812,o), (541,788,o), (367,776,c), -(382,745,o), -(401,690,o), -(405,656,c), +(405,656,l), (584,664,o), (791,686,o), (951,729,c) @@ -185,10 +178,10 @@ nodes = ( (132,760,l), (132,626,l), (232,626,l), -(232,299,l), -(132,299,l), -(132,165,l), -(360,165,l), +(232,269,l), +(132,269,l), +(132,135,l), +(360,135,l), (360,760,l) ); }, @@ -196,8 +189,8 @@ nodes = ( closed = 1; nodes = ( (60,760,l), -(60,89,l), -(186,89,l), +(60,135,l), +(186,135,l), (186,760,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni547D_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni547D_.glyph index cc4371c..3278689 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni547D_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni547D_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni547D; layers = ( { @@ -19,10 +20,10 @@ nodes = ( (156,425,l), (156,396,l), (392,396,l), -(392,131,l), -(156,131,l), -(156,101,l), -(422,101,l), +(392,115,l), +(156,115,l), +(156,85,l), +(422,85,l), (422,425,l) ); }, @@ -48,9 +49,7 @@ nodes = ( (794,115,o), (740,115,o), (666,116,c), -(671,106,o), -(676,94,o), -(678,85,c), +(678,85,l), (764,85,o), (811,84,o), (833,91,cs), @@ -64,8 +63,8 @@ nodes = ( closed = 1; nodes = ( (144,425,l), -(144,11,l), -(174,11,l), +(144,85,l), +(174,85,l), (174,425,l) ); }, @@ -76,9 +75,7 @@ nodes = ( (413,695,o), (228,556,o), (49,501,c), -(55,493,o), -(63,480,o), -(67,471,c), +(67,471,l), (248,533,o), (433,674,o), (528,821,c) @@ -91,9 +88,7 @@ nodes = ( (584,663,o), (770,532,o), (929,476,c), -(935,486,o), -(945,499,o), -(954,506,c), +(954,506,l), (793,556,o), (604,682,o), (512,803,c) @@ -121,10 +116,10 @@ nodes = ( (167,424,l), (167,299,l), (315,299,l), -(315,177,l), -(167,177,l), -(167,52,l), -(451,52,l), +(315,137,l), +(167,137,l), +(167,12,l), +(451,12,l), (451,424,l) ); }, @@ -150,9 +145,7 @@ nodes = ( (737,142,o), (699,142,o), (671,143,c), -(687,107,o), -(704,52,o), -(708,13,c), +(708,13,l), (768,13,o), (816,14,o), (854,35,cs), @@ -166,8 +159,8 @@ nodes = ( closed = 1; nodes = ( (102,424,l), -(102,-26,l), -(234,-26,l), +(102,12,l), +(234,12,l), (234,424,l) ); }, @@ -178,9 +171,7 @@ nodes = ( (409,754,o), (205,646,o), (11,605,c), -(43,567,o), -(77,508,o), -(95,466,c), +(95,466,l), (291,527,o), (506,652,o), (622,790,c) @@ -193,9 +184,7 @@ nodes = ( (551,612,o), (705,516,o), (884,470,c), -(907,512,o), -(952,575,o), -(987,608,c), +(987,608,l), (813,638,o), (656,706,o), (574,794,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5480.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5480.glyph index dea0c62..00fe146 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5480.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5480.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5480; layers = ( { @@ -50,10 +51,10 @@ nodes = ( (102,734,l), (102,705,l), (288,705,l), -(288,199,l), -(102,199,l), -(102,170,l), -(318,170,l), +(288,163,l), +(102,163,l), +(102,134,l), +(318,134,l), (318,734,l) ); }, @@ -61,8 +62,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,134,l), +(117,134,l), (117,734,l) ); } @@ -119,10 +120,10 @@ nodes = ( (115,771,l), (115,631,l), (251,631,l), -(251,301,l), -(115,301,l), -(115,160,l), -(381,160,l), +(251,281,l), +(115,281,l), +(115,140,l), +(381,140,l), (381,771,l) ); }, @@ -130,8 +131,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(187,78,l), +(59,140,l), +(187,140,l), (187,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5482.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5482.glyph index 84ff135..3c86b99 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5482.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5482.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5482; layers = ( { @@ -24,9 +25,7 @@ nodes = ( (836,223,o), (803,222,o), (761,223,c), -(766,215,o), -(770,204,o), -(772,197,c), +(772,197,l), (824,197,o), (853,197,o), (868,202,cs), @@ -66,10 +65,10 @@ nodes = ( (102,734,l), (102,705,l), (256,705,l), -(256,199,l), -(102,199,l), -(102,170,l), -(285,170,l), +(256,163,l), +(102,163,l), +(102,134,l), +(285,134,l), (285,734,l) ); }, @@ -77,8 +76,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,134,l), +(117,134,l), (117,734,l) ); } @@ -109,9 +108,7 @@ nodes = ( (812,273,o), (800,273,o), (788,274,c), -(803,243,o), -(818,195,o), -(821,162,c), +(821,162,l), (856,162,o), (883,164,o), (908,184,cs), @@ -151,10 +148,10 @@ nodes = ( (134,771,l), (134,631,l), (216,631,l), -(216,301,l), -(134,301,l), -(134,160,l), -(340,160,l), +(216,261,l), +(134,261,l), +(134,120,l), +(340,120,l), (340,771,l) ); }, @@ -162,8 +159,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(179,78,l), +(59,120,l), +(179,120,l), (179,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5484.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5484.glyph index 7c609df..3289aee 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5484.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5484.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5484; layers = ( { @@ -21,18 +22,18 @@ nodes = ( closed = 1; nodes = ( (642,823,l), -(642,12,l), -(672,12,l), +(642,-21,l), +(672,-21,l), (672,823,l) ); }, { closed = 1; nodes = ( -(889,343,l), -(889,-54,l), -(918,-54,l), -(918,343,l) +(889,333,l), +(889,-34,l), +(918,-34,l), +(918,333,l) ); }, { @@ -41,10 +42,10 @@ nodes = ( (102,712,l), (102,682,l), (268,682,l), -(268,192,l), -(102,192,l), -(102,163,l), -(297,163,l), +(268,152,l), +(102,152,l), +(102,123,l), +(297,123,l), (297,712,l) ); }, @@ -52,20 +53,20 @@ nodes = ( closed = 1; nodes = ( (84,712,l), -(84,72,l), -(113,72,l), +(84,123,l), +(113,123,l), (113,712,l) ); }, { closed = 1; nodes = ( -(400,342,l), -(400,-1,l), -(907,-1,l), -(907,29,l), -(431,29,l), -(431,342,l) +(400,332,l), +(400,-34,l), +(907,-34,l), +(907,-4,l), +(431,-4,l), +(431,332,l) ); } ); @@ -92,8 +93,8 @@ nodes = ( closed = 1; nodes = ( (602,851,l), -(602,0,l), -(746,0,l), +(602,-20,l), +(746,-20,l), (746,851,l) ); }, @@ -101,8 +102,8 @@ nodes = ( closed = 1; nodes = ( (809,360,l), -(809,-95,l), -(958,-95,l), +(809,-62,l), +(958,-62,l), (958,360,l) ); }, @@ -112,10 +113,10 @@ nodes = ( (132,747,l), (132,616,l), (235,616,l), -(235,268,l), -(132,268,l), -(132,137,l), -(363,137,l), +(235,228,l), +(132,228,l), +(132,97,l), +(363,97,l), (363,747,l) ); }, @@ -123,8 +124,8 @@ nodes = ( closed = 1; nodes = ( (56,747,l), -(56,40,l), -(184,40,l), +(56,97,l), +(184,97,l), (184,747,l) ); }, @@ -132,10 +133,10 @@ nodes = ( closed = 1; nodes = ( (387,362,l), -(387,-42,l), -(875,-42,l), -(875,98,l), -(541,98,l), +(387,-62,l), +(875,-62,l), +(875,78,l), +(541,78,l), (541,362,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5486.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5486.glyph index 3692207..76f64bc 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5486.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5486.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5486; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (95,727,l), (95,698,l), (279,698,l), -(279,229,l), -(95,229,l), -(95,199,l), -(308,199,l), +(279,166,l), +(95,166,l), +(95,136,l), +(308,136,l), (308,727,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,136,l), +(114,136,l), (114,727,l) ); }, @@ -39,9 +40,8 @@ nodes = ( closed = 1; nodes = ( (857,710,l), -(857,702,ls), -(855,352,o), -(851,235,o), +(856,487,o), +(856,242,o), (835,213,c), (829,202,o), (820,201,o), @@ -49,20 +49,15 @@ nodes = ( (792,201,o), (750,201,o), (704,205,c), -(710,197,o), -(713,184,o), -(713,177,c), +(713,177,l), (752,174,o), (790,173,o), (812,174,cs), (836,175,o), (850,180,o), (861,195,cs), -(881,225,o), -(884,332,o), -(886,688,cs), -(886,695,o), -(886,710,o), +(887,233,o), +(885,466,o), (886,710,c) ); }, @@ -73,9 +68,7 @@ nodes = ( (487,690,o), (415,557,o), (329,469,c), -(337,464,o), -(350,455,o), -(355,450,c), +(355,450,l), (439,542,o), (513,677,o), (560,822,c) @@ -95,9 +88,7 @@ nodes = ( (929,-43,o), (942,-12,o), (948,103,c), -(939,106,o), -(927,110,o), -(917,117,c), +(917,117,l), (913,8,o), (904,-15,o), (848,-15,cs), @@ -136,10 +127,10 @@ nodes = ( (144,773,l), (144,640,l), (241,640,l), -(241,298,l), -(144,298,l), -(144,165,l), -(372,165,l), +(241,248,l), +(144,248,l), +(144,115,l), +(372,115,l), (372,773,l) ); }, @@ -147,8 +138,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(190,80,l), +(59,115,l), +(190,115,l), (190,773,l) ); }, @@ -165,9 +156,8 @@ nodes = ( closed = 1; nodes = ( (795,750,l), -(795,724,ls), -(795,420,o), -(796,311,o), +(795,528,o), +(799,315,o), (782,288,cs), (774,276,o), (765,272,o), @@ -175,20 +165,15 @@ nodes = ( (732,272,o), (699,273,o), (662,276,c), -(683,241,o), -(699,185,o), -(701,147,c), +(701,147,l), (749,147,o), (795,147,o), (825,153,cs), (858,160,o), (883,171,o), (905,205,cs), -(931,244,o), -(931,366,o), -(932,694,cs), -(932,710,o), -(932,750,o), +(936,252,o), +(931,472,o), (932,750,c) ); }, @@ -199,9 +184,7 @@ nodes = ( (484,732,o), (409,616,o), (325,544,c), -(350,514,o), -(392,446,o), -(407,415,c), +(407,415,l), (510,509,o), (603,663,o), (659,814,c) @@ -221,9 +204,7 @@ nodes = ( (935,-76,o), (974,-34,o), (991,102,c), -(954,110,o), -(898,131,o), -(868,152,c), +(868,152,l), (861,64,o), (851,47,o), (801,47,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni548B_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni548B_.glyph index 86e03c1..9c4fe84 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni548B_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni548B_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni548B; layers = ( { @@ -38,9 +39,7 @@ nodes = ( (499,698,o), (435,567,o), (359,479,c), -(367,475,o), -(379,466,o), -(384,461,c), +(384,461,l), (459,552,o), (525,685,o), (568,825,c) @@ -61,10 +60,10 @@ nodes = ( (107,727,l), (107,698,l), (308,698,l), -(308,229,l), -(107,229,l), -(107,199,l), -(337,199,l), +(308,179,l), +(107,179,l), +(107,149,l), +(337,149,l), (337,727,l) ); }, @@ -72,8 +71,8 @@ nodes = ( closed = 1; nodes = ( (96,727,l), -(96,96,l), -(126,96,l), +(96,149,l), +(126,149,l), (126,727,l) ); } @@ -118,9 +117,7 @@ nodes = ( (489,723,o), (423,588,o), (341,508,c), -(376,488,o), -(438,443,o), -(465,418,c), +(465,418,l), (547,514,o), (624,668,o), (670,825,c) @@ -141,10 +138,10 @@ nodes = ( (142,773,l), (142,640,l), (263,640,l), -(263,298,l), -(142,298,l), -(142,165,l), -(400,165,l), +(263,238,l), +(142,238,l), +(142,105,l), +(400,105,l), (400,773,l) ); }, @@ -152,8 +149,8 @@ nodes = ( closed = 1; nodes = ( (64,773,l), -(64,80,l), -(200,80,l), +(64,105,l), +(200,105,l), (200,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni548C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni548C_.glyph index 33b8ba2..48428e7 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni548C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni548C_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni548C; layers = ( { @@ -7,22 +8,22 @@ shapes = ( { closed = 1; nodes = ( -(557,85,l), -(557,56,l), -(879,56,l), -(879,85,l) +(557,16,l), +(557,-13,l), +(879,-13,l), +(879,16,l) ); }, { closed = 1; nodes = ( (545,738,l), -(545,-30,l), -(574,-30,l), +(545,-13,l), +(574,-13,l), (574,709,l), (860,709,l), -(860,-23,l), -(889,-23,l), +(860,-13,l), +(889,-13,l), (889,738,l) ); }, @@ -51,9 +52,7 @@ nodes = ( (223,382,o), (116,209,o), (30,125,c), -(36,119,o), -(46,107,o), -(51,99,c), +(51,99,l), (139,189,o), (245,370,o), (296,519,c) @@ -66,9 +65,7 @@ nodes = ( (378,785,o), (207,757,o), (72,739,c), -(76,731,o), -(80,721,o), -(82,714,c), +(82,714,l), (220,730,o), (390,759,o), (485,797,c) @@ -97,18 +94,18 @@ shapes = ( { closed = 1; nodes = ( -(560,173,l), -(560,34,l), -(853,34,l), -(853,173,l) +(560,102,l), +(560,-37,l), +(853,-37,l), +(853,102,l) ); }, { closed = 1; nodes = ( (508,761,l), -(508,-44,l), -(650,-44,l), +(508,-36,l), +(650,-36,l), (650,622,l), (776,622,l), (776,-37,l), @@ -141,9 +138,7 @@ nodes = ( (170,381,o), (102,236,o), (20,147,c), -(44,110,o), -(78,52,o), -(92,10,c), +(92,10,l), (185,115,o), (255,306,o), (295,472,c) @@ -156,9 +151,7 @@ nodes = ( (309,810,o), (170,777,o), (40,759,c), -(56,728,o), -(74,678,o), -(80,646,c), +(80,646,l), (216,662,o), (372,690,o), (496,733,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni548E_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni548E_.glyph index 14153a4..5c89c67 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni548E_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni548E_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni548E; layers = ( { @@ -7,10 +8,10 @@ shapes = ( { closed = 1; nodes = ( -(217,7,l), -(217,-22,l), -(791,-22,l), -(791,7,l) +(217,-23,l), +(217,-52,l), +(791,-52,l), +(791,-23,l) ); }, { @@ -26,12 +27,12 @@ nodes = ( closed = 1; nodes = ( (201,284,l), -(201,-71,l), -(231,-71,l), +(201,-52,l), +(231,-52,l), (231,255,l), (773,255,l), -(773,-68,l), -(803,-68,l), +(773,-52,l), +(803,-52,l), (803,284,l) ); }, @@ -42,9 +43,7 @@ nodes = ( (231,718,o), (156,615,o), (71,547,c), -(79,542,o), -(91,532,o), -(96,527,c), +(96,527,l), (180,598,o), (257,705,o), (303,823,c) @@ -58,9 +57,7 @@ nodes = ( (414,502,o), (231,373,o), (52,323,c), -(58,316,o), -(66,305,o), -(69,297,c), +(69,297,l), (255,355,o), (438,484,o), (507,719,c), @@ -77,12 +74,8 @@ nodes = ( (700,358,cs), (862,358,l), (907,358,l), -(908,366,o), -(915,379,o), -(920,388,c), -(890,388,o), -(722,388,o), -(702,388,cs), +(920,388,l), +(702,388,ls), (473,388,o), (288,427,o), (209,670,c) @@ -120,10 +113,10 @@ shapes = ( { closed = 1; nodes = ( -(256,72,l), -(256,-54,l), -(752,-54,l), -(752,72,l) +(256,52,l), +(256,-74,l), +(752,-74,l), +(752,52,l) ); }, { @@ -139,12 +132,12 @@ nodes = ( closed = 1; nodes = ( (158,279,l), -(158,-97,l), -(307,-97,l), +(158,-74,l), +(307,-74,l), (307,153,l), (688,153,l), -(688,-94,l), -(845,-94,l), +(688,-74,l), +(845,-74,l), (845,279,l) ); }, @@ -155,9 +148,7 @@ nodes = ( (172,760,o), (98,664,o), (19,606,c), -(49,582,o), -(101,530,o), -(124,503,c), +(124,503,l), (209,577,o), (296,697,o), (349,816,c) @@ -171,9 +162,7 @@ nodes = ( (350,561,o), (211,432,o), (16,380,c), -(44,350,o), -(79,293,o), -(95,256,c), +(95,256,l), (322,334,o), (477,478,o), (542,737,c), @@ -190,12 +179,8 @@ nodes = ( (677,303,cs), (881,303,l), (930,303,l), -(938,342,o), -(960,406,o), -(980,437,c), -(909,435,o), -(741,434,o), -(684,435,cs), +(980,435,l), +(684,435,ls), (474,435,o), (296,471,o), (218,684,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni548F_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni548F_.glyph index efd355e..e1d297b 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni548F_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni548F_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni548F; layers = ( { @@ -46,9 +47,7 @@ nodes = ( (590,-40,o), (537,-41,o), (474,-39,c), -(478,-49,o), -(484,-62,o), -(486,-70,c), +(486,-70,l), (559,-70,o), (604,-70,o), (625,-65,cs), @@ -66,13 +65,11 @@ nodes = ( (481,224,o), (381,100,o), (255,35,c), -(262,31,o), -(272,19,o), -(277,12,c), +(277,12,l), (406,81,o), (509,209,o), (550,425,c), -(532,433,l), +(535,432,l), (525,432,l) ); }, @@ -96,9 +93,7 @@ nodes = ( (683,298,o), (797,109,o), (960,23,c), -(965,31,o), -(973,41,o), -(980,46,c), +(980,46,l), (819,124,o), (707,312,o), (654,530,c) @@ -110,10 +105,10 @@ nodes = ( (100,684,l), (100,655,l), (272,655,l), -(272,216,l), -(100,216,l), -(100,186,l), -(301,186,l), +(272,176,l), +(100,176,l), +(100,146,l), +(301,146,l), (301,684,l) ); }, @@ -121,8 +116,8 @@ nodes = ( closed = 1; nodes = ( (83,684,l), -(83,93,l), -(112,93,l), +(83,146,l), +(112,146,l), (112,684,l) ); } @@ -175,9 +170,7 @@ nodes = ( (545,37,o), (494,36,o), (453,39,c), -(472,4,o), -(493,-57,o), -(499,-96,c), +(499,-96,l), (572,-96,o), (626,-93,o), (667,-71,cs), @@ -195,13 +188,11 @@ nodes = ( (437,265,o), (366,145,o), (251,83,c), -(280,62,o), -(330,7,o), -(350,-23,c), +(350,-23,l), (477,54,o), (563,206,o), (596,440,c), -(511,466,l), +(515,463,l), (487,463,l) ); }, @@ -225,9 +216,7 @@ nodes = ( (657,317,o), (736,105,o), (885,-15,c), -(908,25,o), -(955,81,o), -(988,108,c), +(988,108,l), (845,202,o), (759,384,o), (715,579,c) @@ -239,10 +228,10 @@ nodes = ( (122,745,l), (122,611,l), (222,611,l), -(222,297,l), -(122,297,l), -(122,163,l), -(349,163,l), +(222,287,l), +(122,287,l), +(122,153,l), +(349,153,l), (349,745,l) ); }, @@ -250,8 +239,8 @@ nodes = ( closed = 1; nodes = ( (56,745,l), -(56,74,l), -(180,74,l), +(56,153,l), +(180,153,l), (180,745,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5490.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5490.glyph index abf3cf2..5c93ec9 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5490.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5490.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5490; layers = ( { @@ -24,9 +25,7 @@ nodes = ( (789,-39,o), (733,-39,o), (666,-38,c), -(671,-46,o), -(675,-59,o), -(678,-66,c), +(678,-66,l), (761,-66,o), (803,-66,o), (824,-61,cs), @@ -56,9 +55,7 @@ nodes = ( (493,670,o), (417,514,o), (326,412,c), -(333,407,o), -(346,396,o), -(351,391,c), +(351,391,l), (441,498,o), (519,656,o), (571,822,c) @@ -80,10 +77,10 @@ nodes = ( (95,727,l), (95,698,l), (273,698,l), -(273,229,l), -(95,229,l), -(95,199,l), -(302,199,l), +(273,189,l), +(95,189,l), +(95,159,l), +(302,159,l), (302,727,l) ); }, @@ -91,8 +88,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -123,9 +120,7 @@ nodes = ( (738,44,o), (689,44,o), (644,46,c), -(663,9,o), -(684,-51,o), -(690,-89,c), +(690,-89,l), (766,-89,o), (821,-84,o), (861,-62,cs), @@ -155,9 +150,7 @@ nodes = ( (455,718,o), (395,582,o), (322,496,c), -(346,465,o), -(386,395,o), -(399,364,c), +(399,364,l), (493,475,o), (572,653,o), (618,822,c) @@ -179,10 +172,10 @@ nodes = ( (140,773,l), (140,640,l), (237,640,l), -(237,298,l), -(140,298,l), -(140,165,l), -(368,165,l), +(237,238,l), +(140,238,l), +(140,105,l), +(368,105,l), (368,773,l) ); }, @@ -190,8 +183,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(190,80,l), +(59,105,l), +(190,105,l), (190,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5492.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5492.glyph index 6f763e9..68066d0 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5492.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5492.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5492; layers = ( { @@ -57,9 +58,7 @@ nodes = ( (270,130,o), (235,24,o), (49,-50,c), -(55,-56,o), -(63,-67,o), -(66,-74,c), +(66,-74,l), (261,4,o), (299,121,o), (299,227,cs), @@ -80,9 +79,7 @@ nodes = ( (937,-61,o), (946,-23,o), (950,128,c), -(941,130,o), -(929,134,o), -(920,141,c), +(920,141,l), (917,-8,o), (913,-31,o), (875,-31,cs), @@ -155,9 +152,7 @@ nodes = ( (233,175,o), (215,90,o), (21,32,c), -(46,7,o), -(93,-61,o), -(107,-94,c), +(107,-94,l), (332,-20,o), (381,125,o), (381,256,cs), @@ -178,9 +173,7 @@ nodes = ( (924,-75,o), (959,-23,o), (972,153,c), -(933,163,o), -(870,188,o), -(841,212,c), +(841,212,l), (837,81,o), (833,58,o), (812,58,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5494.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5494.glyph index 40a217a..c8efc12 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5494.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5494.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5494; layers = ( { @@ -50,10 +51,10 @@ nodes = ( (102,734,l), (102,705,l), (291,705,l), -(291,199,l), -(102,199,l), -(102,170,l), -(321,170,l), +(291,159,l), +(102,159,l), +(102,130,l), +(321,130,l), (321,734,l) ); }, @@ -61,8 +62,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,130,l), +(117,130,l), (117,734,l) ); } @@ -119,10 +120,10 @@ nodes = ( (133,771,l), (133,631,l), (248,631,l), -(248,301,l), -(133,301,l), -(133,160,l), -(378,160,l), +(248,241,l), +(133,241,l), +(133,100,l), +(378,100,l), (378,771,l) ); }, @@ -130,8 +131,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(186,78,l), +(59,100,l), +(186,100,l), (186,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5495.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5495.glyph index a2fd960..a0b5799 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5495.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5495.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5495; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (98,715,l), (98,685,l), (323,685,l), -(323,229,l), -(98,229,l), -(98,199,l), -(352,199,l), +(323,189,l), +(98,189,l), +(98,159,l), +(352,159,l), (352,715,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (83,715,l), -(83,106,l), -(112,106,l), +(83,159,l), +(112,159,l), (112,715,l) ); }, @@ -47,22 +48,22 @@ nodes = ( { closed = 1; nodes = ( -(484,14,l), (484,-16,l), -(891,-16,l), -(891,14,l) +(484,-46,l), +(891,-46,l), +(891,-16,l) ); }, { closed = 1; nodes = ( (469,327,l), -(469,-70,l), -(498,-70,l), +(469,-46,l), +(498,-46,l), (498,298,l), (875,298,l), -(875,-63,l), -(905,-63,l), +(875,-46,l), +(905,-46,l), (905,327,l) ); } @@ -79,10 +80,10 @@ nodes = ( (152,758,l), (152,624,l), (255,624,l), -(255,297,l), -(152,297,l), -(152,163,l), -(388,163,l), +(255,237,l), +(152,237,l), +(152,103,l), +(388,103,l), (388,758,l) ); }, @@ -90,8 +91,8 @@ nodes = ( closed = 1; nodes = ( (58,758,l), -(58,78,l), -(191,78,l), +(58,103,l), +(191,103,l), (191,758,l) ); }, @@ -116,22 +117,22 @@ nodes = ( { closed = 1; nodes = ( -(524,93,l), -(524,-38,l), -(867,-38,l), -(867,93,l) +(524,63,l), +(524,-68,l), +(867,-68,l), +(867,63,l) ); }, { closed = 1; nodes = ( (449,365,l), -(449,-92,l), -(592,-92,l), +(449,-68,l), +(592,-68,l), (592,232,l), (786,232,l), -(786,-83,l), -(937,-83,l), +(786,-68,l), +(937,-68,l), (937,365,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5496.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5496.glyph index 95f0071..392d789 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5496.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5496.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5496; layers = ( { @@ -16,22 +17,22 @@ nodes = ( { closed = 1; nodes = ( -(694,84,l), -(694,55,l), -(902,55,l), -(902,84,l) +(694,14,l), +(694,-15,l), +(902,-15,l), +(902,14,l) ); }, { closed = 1; nodes = ( (681,709,l), -(681,-35,l), -(711,-35,l), +(681,-15,l), +(711,-15,l), (711,679,l), (886,679,l), -(886,-27,l), -(916,-27,l), +(886,-15,l), +(916,-15,l), (916,709,l) ); }, @@ -39,9 +40,8 @@ nodes = ( closed = 1; nodes = ( (599,621,l), -(599,613,ls), -(585,178,o), -(571,28,o), +(590,337,o), +(581,41,o), (545,-6,cs), (537,-17,o), (529,-19,o), @@ -49,20 +49,15 @@ nodes = ( (501,-19,o), (467,-18,o), (427,-16,c), -(432,-24,o), -(435,-37,o), -(435,-46,c), +(435,-46,l), (467,-49,o), (499,-49,o), (520,-49,cs), (542,-48,o), (558,-42,o), (571,-23,cs), -(602,18,o), -(614,149,o), -(628,599,cs), -(628,605,o), -(628,621,o), +(612,31,o), +(619,317,o), (628,621,c) ); }, @@ -73,9 +68,7 @@ nodes = ( (453,456,o), (451,115,o), (264,-54,c), -(273,-58,o), -(285,-65,o), -(291,-71,c), +(291,-71,l), (481,108,o), (481,445,o), (483,828,c) @@ -87,10 +80,10 @@ nodes = ( (106,751,l), (106,721,l), (266,721,l), -(266,225,l), -(106,225,l), -(106,195,l), -(295,195,l), +(266,185,l), +(106,185,l), +(106,155,l), +(295,155,l), (295,751,l) ); }, @@ -98,8 +91,8 @@ nodes = ( closed = 1; nodes = ( (90,751,l), -(90,84,l), -(120,84,l), +(90,155,l), +(120,155,l), (120,751,l) ); } @@ -122,22 +115,22 @@ nodes = ( { closed = 1; nodes = ( -(717,146,l), -(717,19,l), -(880,19,l), -(880,146,l) +(717,96,l), +(717,-31,l), +(880,-31,l), +(880,96,l) ); }, { closed = 1; nodes = ( (671,745,l), -(671,-56,l), -(785,-56,l), +(671,-31,l), +(785,-31,l), (785,618,l), (829,618,l), -(829,-48,l), -(949,-48,l), +(829,-31,l), +(949,-31,l), (949,745,l) ); }, @@ -145,9 +138,8 @@ nodes = ( closed = 1; nodes = ( (530,664,l), -(530,635,ls), -(522,226,o), -(513,89,o), +(525,389,o), +(521,101,o), (494,60,cs), (485,44,o), (478,40,o), @@ -155,20 +147,15 @@ nodes = ( (450,40,o), (431,40,o), (407,43,c), -(426,7,o), -(438,-47,o), -(440,-84,c), +(440,-84,l), (477,-85,o), (510,-84,o), (535,-78,cs), (564,-71,o), (583,-59,o), (604,-25,cs), -(633,19,o), -(642,177,o), -(652,607,cs), -(653,623,o), -(653,664,o), +(641,32,o), +(646,334,o), (653,664,c) ); }, @@ -179,9 +166,7 @@ nodes = ( (369,431,o), (379,162,o), (240,-7,c), -(270,-26,o), -(313,-71,o), -(332,-102,c), +(332,-102,l), (490,90,o), (491,402,o), (492,850,c) @@ -193,10 +178,10 @@ nodes = ( (122,791,l), (122,678,l), (195,678,l), -(195,249,l), -(122,249,l), -(122,135,l), -(305,135,l), +(195,229,l), +(122,229,l), +(122,115,l), +(305,115,l), (305,791,l) ); }, @@ -204,8 +189,8 @@ nodes = ( closed = 1; nodes = ( (53,791,l), -(53,57,l), -(162,57,l), +(53,115,l), +(162,115,l), (162,791,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5499.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5499.glyph index 62709d4..8bebe77 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5499.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5499.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5499; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (100,734,l), (100,705,l), (278,705,l), -(278,199,l), -(100,199,l), -(100,170,l), -(307,170,l), +(278,159,l), +(100,159,l), +(100,130,l), +(307,130,l), (307,734,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,130,l), +(117,130,l), (117,734,l) ); }, @@ -42,9 +43,7 @@ nodes = ( (513,395,o), (487,115,o), (254,-47,c), -(261,-53,o), -(273,-65,o), -(277,-70,c), +(277,-70,l), (513,108,o), (540,380,o), (549,829,c) @@ -64,9 +63,7 @@ nodes = ( (939,-59,o), (948,-29,o), (952,74,c), -(943,76,o), -(931,81,o), -(923,87,c), +(923,87,l), (920,-10,o), (916,-29,o), (884,-29,cs), @@ -99,9 +96,7 @@ nodes = ( (786,282,o), (637,100,o), (472,-1,c), -(479,-6,o), -(489,-15,o), -(495,-21,c), +(495,-21,l), (661,82,o), (811,267,o), (894,445,c) @@ -120,10 +115,10 @@ nodes = ( (89,772,l), (89,650,l), (237,650,l), -(237,299,l), -(89,299,l), -(89,177,l), -(361,177,l), +(237,269,l), +(89,269,l), +(89,147,l), +(361,147,l), (361,772,l) ); }, @@ -131,8 +126,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(185,78,l), +(59,147,l), +(185,147,l), (185,771,l) ); }, @@ -152,9 +147,7 @@ nodes = ( (498,469,o), (477,176,o), (278,20,c), -(309,-5,o), -(362,-66,o), -(379,-93,c), +(379,-93,l), (594,100,o), (630,415,o), (632,855,c) @@ -174,9 +167,7 @@ nodes = ( (931,-69,o), (963,-25,o), (975,113,c), -(940,121,o), -(887,143,o), -(860,164,c), +(860,164,l), (857,69,o), (853,50,o), (837,50,cs), @@ -209,9 +200,7 @@ nodes = ( (773,285,o), (633,121,o), (473,24,c), -(505,-1,o), -(544,-40,o), -(564,-69,c), +(564,-69,l), (738,51,o), (879,222,o), (975,426,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni549A_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni549A_.glyph index d00bebd..d142a93 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni549A_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni549A_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni549A; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (108,733,l), (108,704,l), (280,704,l), -(280,171,l), -(108,171,l), -(108,141,l), -(309,141,l), +(280,131,l), +(108,131,l), +(108,101,l), +(309,101,l), (309,733,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (93,733,l), -(93,45,l), -(123,45,l), +(93,101,l), +(123,101,l), (123,733,l) ); }, @@ -56,13 +57,11 @@ nodes = ( (730,514,o), (509,364,o), (327,305,c), -(332,299,o), -(340,288,o), -(344,280,c), +(344,280,l), (531,345,o), (754,496,o), (849,708,c), -(830,719,l), +(837,717,l), (823,717,l) ); }, @@ -73,9 +72,7 @@ nodes = ( (567,487,o), (746,340,o), (939,275,c), -(944,282,o), -(953,293,o), -(960,299,c), +(960,299,l), (766,359,o), (589,504,o), (504,681,c) @@ -88,9 +85,7 @@ nodes = ( (522,741,o), (438,622,o), (321,538,c), -(329,534,o), -(337,526,o), -(343,520,c), +(343,520,l), (463,610,o), (547,729,o), (596,826,c) @@ -122,10 +117,10 @@ nodes = ( (132,768,l), (132,639,l), (223,639,l), -(223,268,l), -(132,268,l), -(132,139,l), -(353,139,l), +(223,208,l), +(132,208,l), +(132,79,l), +(353,79,l), (353,768,l) ); }, @@ -133,8 +128,8 @@ nodes = ( closed = 1; nodes = ( (53,768,l), -(53,43,l), -(182,43,l), +(53,79,l), +(182,79,l), (182,768,l) ); }, @@ -168,13 +163,11 @@ nodes = ( (723,570,o), (533,427,o), (323,365,c), -(351,337,o), -(387,282,o), -(404,247,c), +(404,247,l), (638,332,o), (841,486,o), (936,722,c), -(841,771,l), +(855,765,l), (817,765,l) ); }, @@ -185,9 +178,7 @@ nodes = ( (550,457,o), (706,322,o), (902,253,c), -(922,289,o), -(963,344,o), -(994,372,c), +(994,372,l), (807,425,o), (647,539,o), (568,674,c) @@ -200,9 +191,7 @@ nodes = ( (499,761,o), (424,652,o), (311,569,c), -(344,550,o), -(392,505,o), -(415,475,c), +(415,475,l), (539,579,o), (622,701,o), (687,830,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni549B_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni549B_.glyph index 16e6951..98e4807 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni549B_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni549B_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni549B; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (103,699,l), (103,670,l), (289,670,l), -(289,136,l), -(103,136,l), -(103,107,l), -(319,107,l), +(289,86,l), +(103,86,l), +(103,57,l), +(319,57,l), (319,699,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (88,699,l), -(88,11,l), -(118,11,l), +(88,57,l), +(118,57,l), (118,699,l) ); }, @@ -46,9 +47,7 @@ nodes = ( (626,-37,o), (583,-37,o), (525,-36,c), -(530,-46,o), -(536,-58,o), -(538,-66,c), +(538,-66,l), (600,-66,o), (640,-66,o), (660,-61,cs), @@ -97,10 +96,10 @@ nodes = ( (146,733,l), (146,604,l), (228,604,l), -(228,233,l), -(146,233,l), -(146,104,l), -(353,104,l), +(228,173,l), +(146,173,l), +(146,44,l), +(353,44,l), (353,733,l) ); }, @@ -108,8 +107,8 @@ nodes = ( closed = 1; nodes = ( (53,733,l), -(53,4,l), -(179,4,l), +(53,44,l), +(179,44,l), (179,733,l) ); }, @@ -133,9 +132,7 @@ nodes = ( (564,37,o), (506,37,o), (465,39,c), -(483,4,o), -(504,-51,o), -(511,-90,c), +(511,-90,l), (584,-90,o), (641,-88,o), (686,-69,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni549D_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni549D_.glyph index 2b5428e..6da6cbb 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni549D_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni549D_.glyph @@ -1,15 +1,32 @@ { +color = 4; glyphname = uni549D; layers = ( { +guides = ( +{ +angle = 186.0959; +pos = (604,188); +}, +{ +angle = 183.9909; +pos = (554,453); +}, +{ +angle = 184.1665; +pos = (834,459); +}, +{ +angle = 185.4403; +pos = (932,194); +} +); layerId = m01; shapes = ( { closed = 1; nodes = ( -(347,442,o), -(375,454,o), -(375,454,c), +(375,454,l), (375,454,l), (436,550,o), (498,686,o), @@ -21,18 +38,14 @@ nodes = ( (367,494,o), (351,467,o), (336,465,c), -(340,456,o), -(345,440,o), -(347,432,c) +(345,438,l) ); }, { closed = 1; nodes = ( -(347,432,l), -(360,437,o), -(382,441,o), -(554,453,c), +(345,438,l), +(554,453,l), (556,460,o), (562,473,o), (566,481,c), @@ -43,9 +56,7 @@ nodes = ( { closed = 1; nodes = ( -(359,166,o), -(386,177,o), -(386,177,c), +(386,177,l), (386,178,l), (474,286,o), (560,440,o), @@ -57,21 +68,15 @@ nodes = ( (386,222,o), (364,191,o), (348,188,c), -(352,180,o), -(357,164,o), -(359,156,c) +(357,162,l) ); }, { closed = 1; nodes = ( -(359,156,l), -(373,162,o), -(398,166,o), -(604,188,c), -(604,194,o), -(604,207,o), -(605,216,c), +(357,162,l), +(604,188,l), +(605,216,l), (382,195,l), (359,182,l) ); @@ -79,9 +84,7 @@ nodes = ( { closed = 1; nodes = ( -(649,450,o), -(676,462,o), -(676,462,c), +(676,462,l), (676,463,l), (731,555,o), (785,687,o), @@ -93,18 +96,14 @@ nodes = ( (666,501,o), (652,474,o), (638,473,c), -(642,465,o), -(647,448,o), -(649,440,c) +(647,445,l) ); }, { closed = 1; nodes = ( -(649,440,l), -(661,445,o), -(683,448,o), -(834,459,c), +(647,445,l), +(834,459,l), (837,466,o), (843,479,o), (847,487,c), @@ -115,9 +114,7 @@ nodes = ( { closed = 1; nodes = ( -(660,172,o), -(687,182,o), -(687,182,c), +(687,182,l), (687,183,l), (770,294,o), (851,450,o), @@ -129,21 +126,15 @@ nodes = ( (685,229,o), (665,197,o), (649,194,c), -(653,185,o), -(658,170,o), -(660,162,c) +(658,168,l) ); }, { closed = 1; nodes = ( -(660,162,l), -(674,168,o), -(701,172,o), -(932,194,c), -(931,200,o), -(931,213,o), -(933,222,c), +(658,168,l), +(932,194,l), +(933,222,l), (684,201,l), (660,188,l) ); @@ -163,10 +154,10 @@ nodes = ( (106,751,l), (106,721,l), (266,721,l), -(266,225,l), -(106,225,l), -(106,195,l), -(295,195,l), +(266,185,l), +(106,185,l), +(106,155,l), +(295,155,l), (295,751,l) ); }, @@ -174,8 +165,8 @@ nodes = ( closed = 1; nodes = ( (90,751,l), -(90,84,l), -(120,84,l), +(90,155,l), +(120,155,l), (120,751,l) ); } @@ -184,14 +175,30 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 182.0638; +pos = (517,402); +}, +{ +angle = 181.9749; +pos = (829,407); +}, +{ +angle = 187.6333; +pos = (631,171); +}, +{ +angle = 186.31; +pos = (946,171); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { closed = 1; nodes = ( -(352,405,o), -(429,450,o), -(429,450,c), +(429,450,l), (429,453,l), (482,546,o), (539,683,o), @@ -203,18 +210,14 @@ nodes = ( (342,533,o), (328,512,o), (308,505,c), -(323,471,o), -(345,408,o), -(352,382,c) +(347,396,l) ); }, { closed = 1; nodes = ( -(352,382,l), -(372,391,o), -(406,398,o), -(517,402,c), +(347,396,l), +(517,402,l), (525,431,o), (547,485,o), (565,520,c), @@ -225,9 +228,7 @@ nodes = ( { closed = 1; nodes = ( -(371,143,o), -(445,185,o), -(445,185,c), +(445,185,l), (445,189,l), (524,297,o), (607,452,o), @@ -239,21 +240,15 @@ nodes = ( (371,272,o), (354,248,o), (329,240,c), -(344,207,o), -(365,145,o), -(371,121,c) +(365,135,l) ); }, { closed = 1; nodes = ( -(371,121,l), -(397,134,o), -(437,145,o), -(631,171,c), -(629,201,o), -(630,255,o), -(633,292,c), +(365,135,l), +(631,171,l), +(633,292,l), (423,270,l), (365,229,l) ); @@ -261,9 +256,7 @@ nodes = ( { closed = 1; nodes = ( -(659,410,o), -(736,455,o), -(736,455,c), +(736,455,l), (736,458,l), (787,551,o), (843,688,o), @@ -275,18 +268,14 @@ nodes = ( (649,537,o), (635,516,o), (615,510,c), -(631,475,o), -(652,413,o), -(659,387,c) +(654,401,l) ); }, { closed = 1; nodes = ( -(659,387,l), -(679,396,o), -(713,403,o), -(829,407,c), +(654,401,l), +(829,407,l), (838,436,o), (860,488,o), (879,522,c), @@ -297,9 +286,7 @@ nodes = ( { closed = 1; nodes = ( -(667,147,o), -(739,188,o), -(739,188,c), +(739,188,l), (739,191,l), (821,296,o), (906,446,o), @@ -311,21 +298,15 @@ nodes = ( (668,273,o), (650,249,o), (626,242,c), -(640,210,o), -(661,149,o), -(667,125,c) +(662,140,l) ); }, { closed = 1; nodes = ( -(667,125,l), -(695,138,o), -(738,148,o), -(946,171,c), -(945,203,o), -(947,259,o), -(952,298,c), +(662,140,l), +(946,171,l), +(952,298,l), (724,278,l), (662,236,l) ); @@ -345,10 +326,10 @@ nodes = ( (124,791,l), (124,678,l), (197,678,l), -(197,249,l), -(124,249,l), -(124,135,l), -(307,135,l), +(197,229,l), +(124,229,l), +(124,115,l), +(307,115,l), (307,791,l) ); }, @@ -356,8 +337,8 @@ nodes = ( closed = 1; nodes = ( (55,791,l), -(55,57,l), -(164,57,l), +(55,115,l), +(164,115,l), (164,791,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_3.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_3.glyph index 5579a71..544d43d 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_3.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_3.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54A3; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (108,754,l), (108,724,l), (291,724,l), -(291,185,l), -(108,185,l), -(108,156,l), -(321,156,l), +(291,145,l), +(108,145,l), +(108,116,l), +(321,116,l), (321,754,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (93,754,l), -(93,57,l), -(123,57,l), +(93,116,l), +(123,116,l), (123,754,l) ); }, @@ -84,9 +85,7 @@ nodes = ( (941,-54,o), (950,-23,o), (953,93,c), -(943,95,o), -(932,100,o), -(923,107,c), +(923,107,l), (921,-6,o), (917,-24,o), (890,-24,cs), @@ -107,9 +106,7 @@ nodes = ( (538,264,o), (525,84,o), (286,-52,c), -(294,-57,o), -(304,-65,o), -(309,-72,c), +(309,-72,l), (550,69,o), (568,253,o), (568,389,cs), @@ -129,10 +126,10 @@ nodes = ( (137,777,l), (137,648,l), (249,648,l), -(249,277,l), -(137,277,l), -(137,148,l), -(373,148,l), +(249,237,l), +(137,237,l), +(137,108,l), +(373,108,l), (373,777,l) ); }, @@ -140,8 +137,8 @@ nodes = ( closed = 1; nodes = ( (53,777,l), -(53,52,l), -(177,52,l), +(53,108,l), +(177,108,l), (177,777,l) ); }, @@ -203,9 +200,7 @@ nodes = ( (944,-77,o), (976,-32,o), (987,120,c), -(951,130,o), -(893,153,o), -(867,175,c), +(867,175,l), (865,67,o), (862,48,o), (852,48,cs), @@ -226,9 +221,7 @@ nodes = ( (504,220,o), (483,90,o), (300,4,c), -(332,-20,o), -(379,-68,o), -(399,-99,c), +(399,-99,l), (613,10,o), (640,184,o), (640,310,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_4.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_4.glyph index 15d7921..7696406 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_4.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_4.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54A4; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (95,727,l), (95,698,l), (273,698,l), -(273,229,l), -(95,229,l), -(95,199,l), -(302,199,l), +(273,189,l), +(95,189,l), +(95,159,l), +(302,159,l), (302,727,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); }, @@ -46,9 +47,7 @@ nodes = ( (729,533,o), (553,489,o), (407,460,c), -(412,453,o), -(417,442,o), -(418,435,c), +(418,435,l), (568,465,o), (743,508,o), (843,561,c) @@ -68,9 +67,7 @@ nodes = ( (919,-52,o), (930,-19,o), (935,101,c), -(925,104,o), -(914,109,o), -(906,115,c), +(906,115,l), (902,-1,o), (895,-22,o), (855,-22,cs), @@ -118,10 +115,10 @@ nodes = ( (133,773,l), (133,640,l), (221,640,l), -(221,298,l), -(133,298,l), -(133,165,l), -(347,165,l), +(221,238,l), +(133,238,l), +(133,105,l), +(347,105,l), (347,773,l) ); }, @@ -129,8 +126,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(186,80,l), +(59,105,l), +(186,105,l), (186,773,l) ); }, @@ -154,9 +151,7 @@ nodes = ( (686,561,o), (547,523,o), (414,502,c), -(431,471,o), -(451,420,o), -(457,388,c), +(457,388,l), (600,408,o), (760,443,o), (882,501,c) @@ -176,9 +171,7 @@ nodes = ( (926,-79,o), (963,-31,o), (978,132,c), -(939,141,o), -(878,165,o), -(848,189,c), +(848,189,l), (843,75,o), (837,55,o), (806,55,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_6.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_6.glyph index b98d16d..4525ca3 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_6.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_6.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54A6; layers = ( { @@ -39,9 +40,8 @@ nodes = ( closed = 1; nodes = ( (875,304,l), -(875,297,ls), -(868,183,o), -(861,141,o), +(871,226,o), +(866,146,o), (850,130,cs), (845,124,o), (839,123,o), @@ -49,20 +49,15 @@ nodes = ( (819,123,o), (794,123,o), (765,126,c), -(770,118,o), -(772,106,o), -(773,97,c), +(773,97,l), (796,95,o), (821,95,o), (834,95,cs), (853,96,o), (864,100,o), (873,109,cs), -(888,126,o), -(896,168,o), -(904,285,cs), -(905,292,o), -(905,304,o), +(895,134,o), +(899,211,o), (905,304,c) ); }, @@ -74,9 +69,7 @@ nodes = ( (614,300,o), (607,83,o), (293,-46,c), -(300,-53,o), -(308,-64,o), -(312,-70,c), +(312,-70,l), (630,67,o), (643,291,o), (643,478,cs), @@ -90,9 +83,7 @@ nodes = ( (658,112,o), (766,-17,o), (930,-72,c), -(935,-65,o), -(943,-54,o), -(951,-48,c), +(951,-48,l), (787,0,o), (681,127,o), (636,298,c) @@ -102,13 +93,9 @@ nodes = ( closed = 1; nodes = ( (412,448,l), -(406,392,o), -(396,322,o), -(386,276,c), +(386,276,l), (416,276,l), -(425,320,o), -(434,390,o), -(441,448,c) +(441,448,l) ); }, { @@ -117,10 +104,10 @@ nodes = ( (95,727,l), (95,698,l), (270,698,l), -(270,229,l), -(95,229,l), -(95,199,l), -(299,199,l), +(270,189,l), +(95,189,l), +(95,159,l), +(299,159,l), (299,727,l) ); }, @@ -128,8 +115,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -175,9 +162,8 @@ nodes = ( closed = 1; nodes = ( (826,347,l), -(826,332,ls), -(824,247,o), -(821,215,o), +(825,284,o), +(824,220,o), (814,205,cs), (809,198,o), (804,196,o), @@ -185,20 +171,15 @@ nodes = ( (788,196,o), (778,196,o), (763,199,c), -(776,175,o), -(787,135,o), -(788,107,c), +(788,107,l), (823,106,o), (854,107,o), (873,110,cs), (892,113,o), (913,121,o), (928,140,cs), -(945,163,o), -(952,211,o), -(955,310,cs), -(956,323,o), -(956,347,o), +(950,170,o), +(953,236,o), (956,347,c) ); }, @@ -210,9 +191,7 @@ nodes = ( (586,291,o), (563,105,o), (314,12,c), -(345,-15,o), -(387,-67,o), -(404,-96,c), +(404,-96,l), (677,26,o), (720,250,o), (720,455,cs), @@ -226,9 +205,7 @@ nodes = ( (651,72,o), (727,-45,o), (903,-96,c), -(919,-59,o), -(957,-3,o), -(985,25,c), +(985,25,l), (830,55,o), (752,141,o), (716,269,c) @@ -238,13 +215,9 @@ nodes = ( closed = 1; nodes = ( (406,491,l), -(400,406,o), -(387,303,o), -(374,234,c), +(374,234,l), (502,234,l), -(513,301,o), -(525,404,o), -(533,491,c) +(533,491,l) ); }, { @@ -253,10 +226,10 @@ nodes = ( (139,773,l), (139,640,l), (227,640,l), -(227,298,l), -(139,298,l), -(139,165,l), -(348,165,l), +(227,248,l), +(139,248,l), +(139,115,l), +(348,115,l), (348,773,l) ); }, @@ -264,8 +237,8 @@ nodes = ( closed = 1; nodes = ( (60,773,l), -(60,80,l), -(181,80,l), +(60,115,l), +(181,115,l), (181,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_7.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_7.glyph index e72e517..4960004 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_7.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_7.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54A7; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (103,751,l), (103,721,l), (263,721,l), -(263,225,l), -(103,225,l), -(103,195,l), -(292,195,l), +(263,185,l), +(103,185,l), +(103,155,l), +(292,155,l), (292,751,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (90,751,l), -(90,84,l), -(120,84,l), +(90,155,l), +(120,155,l), (120,751,l) ); }, @@ -42,9 +43,7 @@ nodes = ( (457,558,o), (405,377,o), (314,260,c), -(322,256,o), -(334,247,o), -(340,242,c), +(340,242,l), (429,366,o), (483,544,o), (517,751,c) @@ -67,13 +66,11 @@ nodes = ( (598,247,o), (475,39,o), (327,-48,c), -(334,-54,o), -(343,-65,o), -(347,-71,c), +(347,-71,l), (500,26,o), (623,233,o), (662,571,c), -(644,576,l), +(646,574,l), (639,574,l) ); }, @@ -110,9 +107,7 @@ nodes = ( (858,-36,o), (815,-37,o), (763,-35,c), -(769,-44,o), -(773,-58,o), -(775,-65,c), +(775,-65,l), (837,-65,o), (871,-65,o), (890,-60,cs), @@ -135,10 +130,10 @@ nodes = ( (134,791,l), (134,678,l), (207,678,l), -(207,249,l), -(134,249,l), -(134,135,l), -(323,135,l), +(207,209,l), +(134,209,l), +(134,95,l), +(323,95,l), (323,791,l) ); }, @@ -146,8 +141,8 @@ nodes = ( closed = 1; nodes = ( (55,791,l), -(55,57,l), -(172,57,l), +(55,95,l), +(172,95,l), (172,791,l) ); }, @@ -167,9 +162,7 @@ nodes = ( (398,573,o), (365,402,o), (300,297,c), -(326,279,o), -(373,237,o), -(392,217,c), +(392,217,l), (466,340,o), (508,533,o), (530,733,c) @@ -192,13 +185,11 @@ nodes = ( (534,310,o), (466,93,o), (337,-1,c), -(364,-24,o), -(400,-70,o), -(417,-100,c), +(417,-100,l), (571,27,o), (644,250,o), (664,581,c), -(590,596,l), +(595,593,l), (570,593,l) ); }, @@ -235,9 +226,7 @@ nodes = ( (792,37,o), (752,37,o), (714,38,c), -(730,3,o), -(745,-53,o), -(749,-86,c), +(749,-86,l), (817,-87,o), (866,-82,o), (901,-61,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_8.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_8.glyph index 97f0dca..0172390 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_8.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_8.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54A8; layers = ( { @@ -7,22 +8,22 @@ shapes = ( { closed = 1; nodes = ( -(214,3,l), -(214,-26,l), -(792,-26,l), -(792,3,l) +(214,-27,l), +(214,-56,l), +(792,-56,l), +(792,-27,l) ); }, { closed = 1; nodes = ( (197,262,l), -(197,-86,l), -(227,-86,l), +(197,-56,l), +(227,-56,l), (227,232,l), (776,232,l), -(776,-83,l), -(806,-83,l), +(776,-56,l), +(806,-56,l), (806,262,l) ); }, @@ -42,9 +43,7 @@ nodes = ( (476,721,o), (427,622,o), (365,555,c), -(373,550,o), -(385,541,o), -(390,536,c), +(390,536,l), (451,606,o), (503,710,o), (533,820,c) @@ -75,7 +74,7 @@ nodes = ( (860,570,o), (888,639,o), (914,698,c), -(894,707,l), +(896,705,l), (888,705,l) ); }, @@ -86,9 +85,7 @@ nodes = ( (596,516,o), (530,385,o), (297,327,c), -(303,321,o), -(312,310,o), -(315,303,c), +(315,303,l), (554,367,o), (623,501,o), (651,698,c) @@ -101,9 +98,7 @@ nodes = ( (645,449,o), (746,350,o), (921,311,c), -(925,319,o), -(933,329,o), -(940,335,c), +(940,335,l), (768,368,o), (669,465,o), (633,621,c) @@ -132,22 +127,22 @@ shapes = ( { closed = 1; nodes = ( -(236,67,l), -(236,-61,l), -(768,-61,l), -(768,67,l) +(236,57,l), +(236,-71,l), +(768,-71,l), +(768,57,l) ); }, { closed = 1; nodes = ( (171,298,l), -(171,-95,l), -(323,-95,l), +(171,-71,l), +(323,-71,l), (323,169,l), (701,169,l), -(701,-91,l), -(861,-91,l), +(701,-71,l), +(861,-71,l), (861,298,l) ); }, @@ -167,9 +162,7 @@ nodes = ( (388,763,o), (334,662,o), (265,602,c), -(300,586,o), -(363,550,o), -(392,527,c), +(392,527,l), (458,598,o), (521,714,o), (556,835,c) @@ -200,7 +193,7 @@ nodes = ( (901,581,o), (933,670,o), (955,753,c), -(854,778,l), +(882,773,l), (832,773,l) ); }, @@ -211,9 +204,7 @@ nodes = ( (553,572,o), (533,470,o), (294,412,c), -(324,383,o), -(360,326,o), -(374,290,c), +(374,290,l), (653,370,o), (696,518,o), (714,716,c) @@ -226,9 +217,7 @@ nodes = ( (617,433,o), (696,335,o), (882,295,c), -(899,334,o), -(935,391,o), -(964,420,c), +(964,420,l), (800,439,o), (720,505,o), (682,619,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_9.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_9.glyph index e29b4da..cdb6b9f 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_9.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_9.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54A9; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (95,727,l), (95,698,l), (284,698,l), -(284,229,l), -(95,229,l), -(95,199,l), -(314,199,l), +(284,179,l), +(95,179,l), +(95,149,l), +(314,149,l), (314,727,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,149,l), +(114,149,l), (114,727,l) ); }, @@ -101,10 +102,10 @@ nodes = ( (140,772,l), (140,639,l), (231,639,l), -(231,297,l), -(140,297,l), -(140,164,l), -(364,164,l), +(231,237,l), +(140,237,l), +(140,104,l), +(364,104,l), (364,772,l) ); }, @@ -112,8 +113,8 @@ nodes = ( closed = 1; nodes = ( (54,771,l), -(54,78,l), -(185,78,l), +(54,104,l), +(185,104,l), (185,771,l) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_A_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_A_.glyph index 21f6e9a..b66afd2 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_A_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_A_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54AA; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (101,740,l), (101,711,l), (279,711,l), -(279,260,l), -(101,260,l), -(101,230,l), -(308,230,l), +(279,210,l), +(101,210,l), +(101,180,l), +(308,180,l), (308,740,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (87,740,l), -(87,123,l), -(117,123,l), +(87,180,l), +(117,180,l), (117,740,l) ); }, @@ -51,9 +52,7 @@ nodes = ( (547,262,o), (415,92,o), (288,18,c), -(295,12,o), -(305,2,o), -(311,-6,c), +(311,-6,l), (437,77,o), (570,246,o), (638,419,c) @@ -66,9 +65,7 @@ nodes = ( (702,253,o), (822,81,o), (937,-5,c), -(943,3,o), -(953,13,o), -(960,19,c), +(960,19,l), (845,96,o), (725,265,o), (664,429,c) @@ -113,10 +110,10 @@ nodes = ( (136,788,l), (136,657,l), (242,657,l), -(242,330,l), -(136,330,l), -(136,198,l), -(377,198,l), +(242,300,l), +(136,300,l), +(136,168,l), +(377,168,l), (377,788,l) ); }, @@ -124,8 +121,8 @@ nodes = ( closed = 1; nodes = ( (57,788,l), -(57,99,l), -(191,99,l), +(57,168,l), +(191,168,l), (191,788,l) ); }, @@ -154,9 +151,7 @@ nodes = ( (526,288,o), (421,143,o), (294,66,c), -(325,40,o), -(369,-11,o), -(391,-45,c), +(391,-45,l), (526,52,o), (627,219,o), (689,403,c) @@ -169,9 +164,7 @@ nodes = ( (701,236,o), (779,63,o), (882,-39,c), -(906,0,o), -(954,52,o), -(987,79,c), +(987,79,l), (885,159,o), (799,301,o), (754,438,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_B_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_B_.glyph index 51a4cbb..abed9f5 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_B_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_B_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54AB; layers = ( { @@ -25,9 +26,7 @@ nodes = ( (133,346,o), (124,114,o), (33,-57,c), -(40,-59,o), -(55,-65,o), -(61,-71,c), +(61,-71,l), (152,101,o), (165,343,o), (165,512,cs), @@ -43,12 +42,8 @@ nodes = ( (803,-49,cs), (915,-49,l), (944,-49,l), -(946,-41,o), -(953,-26,o), -(959,-17,c), -(932,-18,o), -(823,-18,o), -(804,-18,cs), +(959,-18,l), +(804,-18,ls), (581,-18,o), (378,44,o), (298,433,c) @@ -79,9 +74,7 @@ nodes = ( (606,270,o), (547,183,o), (481,124,c), -(489,120,o), -(502,110,o), -(507,106,c), +(507,106,l), (570,167,o), (631,258,o), (671,352,c) @@ -128,9 +121,7 @@ nodes = ( (93,389,o), (88,144,o), (18,-19,c), -(52,-33,o), -(117,-75,o), -(144,-99,c), +(144,-99,l), (223,81,o), (237,373,o), (237,553,cs), @@ -146,12 +137,8 @@ nodes = ( (739,-77,cs), (904,-77,l), (943,-77,l), -(950,-37,o), -(970,28,o), -(989,61,c), -(933,59,o), -(797,58,o), -(750,59,cs), +(989,59,l), +(750,59,ls), (569,59,o), (428,121,o), (371,414,c) @@ -182,9 +169,7 @@ nodes = ( (579,313,o), (535,238,o), (489,190,c), -(518,173,o), -(570,135,o), -(594,113,c), +(594,113,l), (643,170,o), (697,263,o), (729,349,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_C_.glyph index e0cf78d..e054fec 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_C_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54AC; layers = ( { @@ -24,9 +25,7 @@ nodes = ( (490,522,o), (427,441,o), (367,385,c), -(375,381,o), -(387,371,o), -(392,367,c), +(392,367,l), (450,424,o), (515,509,o), (562,587,c) @@ -48,9 +47,7 @@ nodes = ( (567,185,o), (726,6,o), (936,-68,c), -(941,-61,o), -(950,-50,o), -(958,-44,c), +(958,-44,l), (748,25,o), (588,201,o), (514,420,c) @@ -63,9 +60,7 @@ nodes = ( (722,205,o), (574,51,o), (346,-52,c), -(354,-58,o), -(363,-65,o), -(368,-71,c), +(368,-71,l), (597,33,o), (745,193,o), (810,418,c) @@ -90,10 +85,10 @@ nodes = ( (95,727,l), (95,698,l), (284,698,l), -(284,229,l), -(95,229,l), -(95,199,l), -(314,199,l), +(284,189,l), +(95,189,l), +(95,159,l), +(314,159,l), (314,727,l) ); }, @@ -101,8 +96,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -133,9 +128,7 @@ nodes = ( (461,536,o), (402,454,o), (345,403,c), -(377,383,o), -(432,341,o), -(458,316,c), +(458,316,l), (517,378,o), (586,479,o), (630,571,c) @@ -157,9 +150,7 @@ nodes = ( (543,145,o), (672,-16,o), (892,-98,c), -(912,-60,o), -(954,-3,o), -(986,25,c), +(986,25,l), (783,87,o), (652,227,o), (589,406,c) @@ -172,9 +163,7 @@ nodes = ( (672,217,o), (530,82,o), (317,15,c), -(345,-10,o), -(385,-65,o), -(402,-97,c), +(402,-97,l), (637,-12,o), (787,138,o), (864,374,c) @@ -199,10 +188,10 @@ nodes = ( (137,773,l), (137,640,l), (234,640,l), -(234,298,l), -(137,298,l), -(137,165,l), -(367,165,l), +(234,258,l), +(137,258,l), +(137,125,l), +(367,125,l), (367,773,l) ); }, @@ -210,8 +199,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(190,80,l), +(59,125,l), +(190,125,l), (190,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_D_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_D_.glyph index e7fa172..3a5c0ce 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_D_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_D_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54AD; layers = ( { @@ -25,10 +26,10 @@ nodes = ( { closed = 1; nodes = ( -(454,7,l), -(454,-22,l), -(861,-22,l), -(861,7,l) +(454,-23,l), +(454,-52,l), +(861,-52,l), +(861,-23,l) ); }, { @@ -44,12 +45,12 @@ nodes = ( closed = 1; nodes = ( (438,281,l), -(438,-70,l), -(468,-70,l), +(438,-52,l), +(468,-52,l), (468,252,l), (845,252,l), -(845,-67,l), -(874,-67,l), +(845,-52,l), +(874,-52,l), (874,281,l) ); }, @@ -59,10 +60,10 @@ nodes = ( (102,734,l), (102,705,l), (288,705,l), -(288,199,l), -(102,199,l), -(102,170,l), -(318,170,l), +(288,159,l), +(102,159,l), +(102,130,l), +(318,130,l), (318,734,l) ); }, @@ -70,8 +71,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,130,l), +(117,130,l), (117,734,l) ); } @@ -103,10 +104,10 @@ nodes = ( { closed = 1; nodes = ( -(517,65,l), -(517,-65,l), -(828,-65,l), -(828,65,l) +(517,45,l), +(517,-85,l), +(828,-85,l), +(828,45,l) ); }, { @@ -122,12 +123,12 @@ nodes = ( closed = 1; nodes = ( (448,313,l), -(448,-97,l), -(591,-97,l), +(448,-85,l), +(591,-85,l), (591,183,l), (770,183,l), -(770,-93,l), -(920,-93,l), +(770,-85,l), +(920,-85,l), (920,313,l) ); }, @@ -137,10 +138,10 @@ nodes = ( (138,771,l), (138,631,l), (256,631,l), -(256,301,l), -(138,301,l), -(138,160,l), -(387,160,l), +(256,241,l), +(138,241,l), +(138,100,l), +(387,100,l), (387,771,l) ); }, @@ -148,8 +149,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(191,78,l), +(59,100,l), +(191,100,l), (191,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_F_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_F_.glyph index 7db0ada..f040a12 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_F_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54A_F_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54AF; layers = ( { @@ -8,22 +9,22 @@ shapes = ( closed = 1; nodes = ( (446,281,l), -(446,-70,l), -(476,-70,l), +(446,-60,l), +(476,-60,l), (476,252,l), (853,252,l), -(853,-70,l), -(882,-70,l), +(853,-60,l), +(882,-60,l), (882,281,l) ); }, { closed = 1; nodes = ( -(463,-1,l), -(463,-30,l), -(869,-30,l), -(869,-1,l) +(463,-31,l), +(463,-60,l), +(869,-60,l), +(869,-31,l) ); }, { @@ -43,13 +44,11 @@ nodes = ( (757,494,o), (552,347,o), (345,276,c), -(352,270,o), -(361,258,o), -(366,250,c), +(366,250,l), (574,328,o), (782,475,o), (874,707,c), -(856,719,l), +(859,717,l), (849,717,l) ); }, @@ -60,9 +59,7 @@ nodes = ( (579,478,o), (749,329,o), (944,265,c), -(949,273,o), -(958,284,o), -(965,290,c), +(965,290,l), (770,348,o), (601,495,o), (522,676,c) @@ -75,9 +72,7 @@ nodes = ( (531,710,o), (444,596,o), (351,521,c), -(359,516,o), -(372,506,o), -(377,501,c), +(377,501,l), (468,579,o), (556,695,o), (615,820,c) @@ -89,10 +84,10 @@ nodes = ( (100,721,l), (100,692,l), (310,692,l), -(310,235,l), -(100,235,l), -(100,206,l), -(339,206,l), +(310,195,l), +(100,195,l), +(100,166,l), +(339,166,l), (339,721,l) ); }, @@ -100,8 +95,8 @@ nodes = ( closed = 1; nodes = ( (83,721,l), -(83,113,l), -(112,113,l), +(83,166,l), +(112,166,l), (112,721,l) ); } @@ -116,22 +111,22 @@ shapes = ( closed = 1; nodes = ( (444,272,l), -(444,-96,l), -(581,-96,l), +(444,-82,l), +(581,-82,l), (581,146,l), (760,146,l), -(760,-92,l), -(905,-92,l), +(760,-82,l), +(905,-82,l), (905,272,l) ); }, { closed = 1; nodes = ( -(508,64,l), -(508,-62,l), -(837,-62,l), -(837,64,l) +(508,44,l), +(508,-82,l), +(837,-82,l), +(837,44,l) ); }, { @@ -151,13 +146,11 @@ nodes = ( (720,530,o), (543,403,o), (321,347,c), -(347,318,o), -(386,251,o), -(400,214,c), +(400,214,l), (636,287,o), (840,448,o), (931,706,c), -(838,757,l), +(847,752,l), (813,752,l) ); }, @@ -168,9 +161,7 @@ nodes = ( (535,425,o), (684,295,o), (902,234,c), -(922,273,o), -(964,331,o), -(996,361,c), +(996,361,l), (790,405,o), (637,510,o), (561,651,c) @@ -183,9 +174,7 @@ nodes = ( (516,738,o), (426,627,o), (324,561,c), -(357,538,o), -(414,487,o), -(439,460,c), +(439,460,l), (542,541,o), (645,675,o), (707,815,c) @@ -197,10 +186,10 @@ nodes = ( (135,758,l), (135,624,l), (235,624,l), -(235,297,l), -(135,297,l), -(135,163,l), -(365,163,l), +(235,237,l), +(135,237,l), +(135,103,l), +(365,103,l), (365,758,l) ); }, @@ -208,8 +197,8 @@ nodes = ( closed = 1; nodes = ( (59,758,l), -(59,87,l), -(187,87,l), +(59,103,l), +(187,103,l), (187,758,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_1.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_1.glyph index de5305b..c7c9770 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_1.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_1.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54B1; layers = ( { @@ -7,40 +8,40 @@ shapes = ( { closed = 1; nodes = ( -(441,473,l), -(441,443,l), -(887,443,l), -(887,473,l) +(441,453,l), +(441,423,l), +(887,423,l), +(887,453,l) ); }, { closed = 1; nodes = ( -(441,256,l), -(441,227,l), -(887,227,l), -(887,256,l) +(441,211,l), +(441,182,l), +(887,182,l), +(887,211,l) ); }, { closed = 1; nodes = ( -(440,35,l), -(440,6,l), -(886,6,l), -(886,35,l) +(440,-25,l), +(440,-54,l), +(886,-54,l), +(886,-25,l) ); }, { closed = 1; nodes = ( (425,682,l), -(425,-69,l), -(454,-69,l), +(425,-54,l), +(454,-54,l), (454,653,l), (868,653,l), -(868,-69,l), -(898,-69,l), +(868,-54,l), +(898,-54,l), (898,682,l) ); }, @@ -63,10 +64,10 @@ nodes = ( (102,734,l), (102,705,l), (288,705,l), -(288,199,l), -(102,199,l), -(102,170,l), -(318,170,l), +(288,159,l), +(102,159,l), +(102,130,l), +(318,130,l), (318,734,l) ); }, @@ -74,8 +75,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,130,l), +(117,130,l), (117,734,l) ); } @@ -89,40 +90,40 @@ shapes = ( { closed = 1; nodes = ( -(471,509,l), -(471,375,l), -(886,375,l), -(886,509,l) +(471,499,l), +(471,365,l), +(886,365,l), +(886,499,l) ); }, { closed = 1; nodes = ( -(473,303,l), -(473,169,l), -(888,169,l), -(888,303,l) +(473,279,l), +(473,145,l), +(888,145,l), +(888,279,l) ); }, { closed = 1; nodes = ( -(473,94,l), -(473,-44,l), -(906,-44,l), -(906,94,l) +(473,64,l), +(473,-74,l), +(906,-74,l), +(906,64,l) ); }, { closed = 1; nodes = ( (421,716,l), -(421,-94,l), -(557,-94,l), +(421,-74,l), +(557,-74,l), (557,578,l), (800,578,l), -(800,-94,l), -(943,-94,l), +(800,-74,l), +(943,-74,l), (943,716,l) ); }, @@ -145,10 +146,10 @@ nodes = ( (134,771,l), (134,631,l), (246,631,l), -(246,301,l), -(134,301,l), -(134,160,l), -(377,160,l), +(246,241,l), +(134,241,l), +(134,100,l), +(377,100,l), (377,771,l) ); }, @@ -156,8 +157,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(190,78,l), +(59,100,l), +(190,100,l), (190,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_3.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_3.glyph index a87c311..0f86b3d 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_3.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_3.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni54B3; layers = ( { +guides = ( +{ +angle = 184.0567; +pos = (725,410); +} +); layerId = m01; shapes = ( { @@ -33,9 +40,7 @@ nodes = ( (705,385,o), (538,246,o), (359,163,c), -(366,157,o), -(375,146,o), -(378,139,c), +(378,139,l), (561,227,o), (725,368,o), (816,521,c) @@ -48,9 +53,7 @@ nodes = ( (776,200,o), (562,40,o), (323,-52,c), -(329,-58,o), -(338,-68,o), -(342,-75,c), +(342,-75,l), (584,21,o), (795,181,o), (913,371,c) @@ -59,9 +62,7 @@ nodes = ( { closed = 1; nodes = ( -(398,393,o), -(449,406,o), -(449,406,c), +(449,406,l), (496,459,o), (596,590,o), (640,653,c), @@ -72,18 +73,14 @@ nodes = ( (420,423,o), (398,417,o), (383,412,c), -(387,405,o), -(396,389,o), -(398,380,c) +(395,387,l) ); }, { closed = 1; nodes = ( -(398,380,l), -(415,387,o), -(443,390,o), -(725,410,c), +(395,387,l), +(725,410,l), (728,417,o), (733,430,o), (738,439,c), @@ -110,10 +107,10 @@ nodes = ( (93,708,l), (93,678,l), (282,678,l), -(282,209,l), -(93,209,l), -(93,180,l), -(312,180,l), +(282,169,l), +(93,169,l), +(93,140,l), +(312,140,l), (312,708,l) ); }, @@ -121,8 +118,8 @@ nodes = ( closed = 1; nodes = ( (84,708,l), -(84,77,l), -(114,77,l), +(84,140,l), +(114,140,l), (114,708,l) ); } @@ -131,6 +128,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 183.7671; +pos = (750,393); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -162,9 +165,7 @@ nodes = ( (713,451,o), (554,319,o), (366,253,c), -(391,226,o), -(429,172,o), -(447,140,c), +(447,140,l), (652,221,o), (820,368,o), (923,537,c) @@ -177,9 +178,7 @@ nodes = ( (743,228,o), (552,91,o), (320,29,c), -(346,-2,o), -(387,-61,o), -(407,-97,c), +(407,-97,l), (657,-18,o), (856,133,o), (979,320,c) @@ -188,9 +187,7 @@ nodes = ( { closed = 1; nodes = ( -(430,393,o), -(594,442,o), -(594,442,c), +(594,442,l), (644,512,o), (711,625,o), (756,698,c), @@ -201,18 +198,14 @@ nodes = ( (466,511,o), (419,500,o), (390,494,c), -(402,462,o), -(423,391,o), -(430,356,c) +(425,372,l) ); }, { closed = 1; nodes = ( -(430,356,l), -(460,368,o), -(507,377,o), -(750,393,c), +(425,372,l), +(750,393,l), (757,422,o), (774,477,o), (789,513,c), @@ -239,10 +232,10 @@ nodes = ( (139,750,l), (139,617,l), (232,617,l), -(232,275,l), -(139,275,l), -(139,142,l), -(359,142,l), +(232,245,l), +(139,245,l), +(139,112,l), +(359,112,l), (359,750,l) ); }, @@ -250,8 +243,8 @@ nodes = ( closed = 1; nodes = ( (59,750,l), -(59,57,l), -(184,57,l), +(59,112,l), +(184,112,l), (184,750,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_4.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_4.glyph index 557b4bb..e93ad68 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_4.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_4.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54B4; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (100,710,l), (100,680,l), (260,680,l), -(260,202,l), -(100,202,l), -(100,173,l), -(289,173,l), +(260,182,l), +(100,182,l), +(100,153,l), +(289,153,l), (289,710,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (85,710,l), -(85,75,l), -(115,75,l), +(85,153,l), +(115,153,l), (115,710,l) ); }, @@ -42,9 +43,7 @@ nodes = ( (495,508,o), (438,251,o), (277,90,c), -(284,85,o), -(298,76,o), -(304,71,c), +(304,71,l), (465,241,o), (523,491,o), (556,830,c) @@ -57,9 +56,7 @@ nodes = ( (697,246,o), (654,42,o), (429,-45,c), -(437,-52,o), -(446,-63,o), -(451,-71,c), +(451,-71,l), (678,26,o), (726,226,o), (738,591,c) @@ -72,9 +69,7 @@ nodes = ( (719,135,o), (793,-4,o), (922,-65,c), -(927,-58,o), -(936,-47,o), -(944,-41,c), +(944,-41,l), (817,13,o), (743,149,o), (713,321,c) @@ -87,9 +82,7 @@ nodes = ( (582,385,o), (559,302,o), (521,243,c), -(528,239,o), -(541,230,o), -(546,226,c), +(546,226,l), (583,286,o), (611,375,o), (627,466,c) @@ -102,9 +95,7 @@ nodes = ( (862,395,o), (831,312,o), (790,253,c), -(798,249,o), -(811,240,o), -(816,235,c), +(816,235,l), (856,296,o), (889,385,o), (910,474,c) @@ -123,10 +114,10 @@ nodes = ( (137,755,l), (137,626,l), (219,626,l), -(219,312,l), -(137,312,l), -(137,183,l), -(339,183,l), +(219,302,l), +(137,302,l), +(137,173,l), +(339,173,l), (339,755,l) ); }, @@ -134,8 +125,8 @@ nodes = ( closed = 1; nodes = ( (53,755,l), -(53,66,l), -(169,66,l), +(53,173,l), +(169,173,l), (169,755,l) ); }, @@ -155,9 +146,7 @@ nodes = ( (448,568,o), (399,306,o), (276,152,c), -(305,129,o), -(359,77,o), -(378,51,c), +(378,51,l), (513,233,o), (574,523,o), (603,845,c) @@ -170,9 +159,7 @@ nodes = ( (681,278,o), (638,85,o), (414,17,c), -(441,-10,o), -(475,-63,o), -(490,-98,c), +(490,-98,l), (745,-5,o), (794,209,o), (813,565,c) @@ -185,9 +172,7 @@ nodes = ( (705,107,o), (781,-21,o), (896,-90,c), -(915,-56,o), -(955,-7,o), -(984,17,c), +(984,17,l), (878,67,o), (801,170,o), (763,282,c) @@ -200,9 +185,7 @@ nodes = ( (563,413,o), (546,325,o), (514,267,c), -(539,255,o), -(582,230,o), -(602,214,c), +(602,214,l), (636,279,o), (660,381,o), (673,480,c) @@ -215,9 +198,7 @@ nodes = ( (835,417,o), (811,318,o), (786,255,c), -(814,245,o), -(863,226,o), -(887,212,c), +(887,212,l), (910,278,o), (939,385,o), (955,478,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_8.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_8.glyph index 681f0a5..256f6b6 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_8.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_8.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54B8; layers = ( { @@ -11,9 +12,7 @@ nodes = ( (768,253,o), (633,68,o), (428,-44,c), -(435,-50,o), -(447,-62,o), -(451,-68,c), +(451,-68,l), (656,52,o), (792,236,o), (869,501,c) @@ -34,10 +33,10 @@ nodes = ( (277,373,l), (277,343,l), (525,343,l), -(525,138,l), -(277,138,l), -(277,109,l), -(554,109,l), +(525,118,l), +(277,118,l), +(277,89,l), +(554,89,l), (554,373,l) ); }, @@ -45,8 +44,8 @@ nodes = ( closed = 1; nodes = ( (260,373,l), -(260,46,l), -(289,46,l), +(260,89,l), +(289,89,l), (289,373,l) ); }, @@ -80,9 +79,7 @@ nodes = ( (140,260,o), (131,79,o), (46,-56,c), -(53,-59,o), -(65,-67,o), -(70,-73,c), +(70,-73,l), (157,64,o), (170,256,o), (170,394,cs), @@ -99,9 +96,7 @@ nodes = ( (932,-74,o), (947,-21,o), (955,132,c), -(947,135,o), -(934,140,o), -(926,146,c), +(926,146,l), (920,8,o), (908,-44,o), (875,-44,cs), @@ -124,9 +119,7 @@ nodes = ( (731,287,o), (613,109,o), (430,11,c), -(461,-14,o), -(514,-69,o), -(535,-98,c), +(535,-98,l), (725,23,o), (857,225,o), (928,489,c) @@ -147,10 +140,10 @@ nodes = ( (323,358,l), (323,249,l), (438,249,l), -(438,192,l), -(323,192,l), -(323,82,l), -(554,82,l), +(438,182,l), +(323,182,l), +(323,72,l), +(554,72,l), (554,358,l) ); }, @@ -158,8 +151,8 @@ nodes = ( closed = 1; nodes = ( (268,358,l), -(268,25,l), -(383,25,l), +(268,72,l), +(383,72,l), (383,358,l) ); }, @@ -193,9 +186,7 @@ nodes = ( (104,285,o), (98,112,o), (16,-4,c), -(46,-21,o), -(106,-71,o), -(128,-98,c), +(128,-98,l), (227,36,o), (245,261,o), (245,414,cs), @@ -212,9 +203,7 @@ nodes = ( (914,-95,o), (956,-52,o), (974,130,c), -(940,143,o), -(893,175,o), -(864,205,c), +(864,205,l), (860,90,o), (850,40,o), (832,40,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_B_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_B_.glyph index 39b5959..c9944ec 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_B_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_B_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54BB; layers = ( { @@ -29,9 +30,7 @@ nodes = ( (443,665,o), (378,507,o), (294,404,c), -(301,399,o), -(313,388,o), -(318,382,c), +(318,382,l), (403,492,o), (469,651,o), (511,824,c) @@ -44,9 +43,7 @@ nodes = ( (759,376,o), (846,173,o), (940,76,c), -(946,83,o), -(956,92,o), -(963,98,c), +(963,98,l), (869,186,o), (781,386,o), (737,573,c) @@ -59,9 +56,7 @@ nodes = ( (640,384,o), (556,184,o), (462,97,c), -(469,91,o), -(478,82,o), -(484,75,c), +(484,75,l), (578,171,o), (663,371,o), (707,566,c) @@ -83,10 +78,10 @@ nodes = ( (95,727,l), (95,698,l), (267,698,l), -(267,229,l), -(95,229,l), -(95,199,l), -(296,199,l), +(267,189,l), +(95,189,l), +(95,159,l), +(296,159,l), (296,727,l) ); }, @@ -94,8 +89,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -131,9 +126,7 @@ nodes = ( (426,709,o), (364,564,o), (287,472,c), -(310,441,o), -(347,371,o), -(360,340,c), +(360,340,l), (458,458,o), (538,646,o), (585,825,c) @@ -146,9 +139,7 @@ nodes = ( (777,371,o), (827,172,o), (896,61,c), -(917,93,o), -(959,134,o), -(987,155,c), +(987,155,l), (914,248,o), (854,417,o), (822,568,c) @@ -161,9 +152,7 @@ nodes = ( (641,410,o), (576,237,o), (496,142,c), -(524,121,o), -(566,77,o), -(586,48,c), +(586,48,l), (665,161,o), (721,362,o), (752,549,c) @@ -185,10 +174,10 @@ nodes = ( (129,773,l), (129,640,l), (217,640,l), -(217,298,l), -(129,298,l), -(129,165,l), -(337,165,l), +(217,238,l), +(129,238,l), +(129,105,l), +(337,105,l), (337,773,l) ); }, @@ -196,8 +185,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(180,80,l), +(59,105,l), +(180,105,l), (180,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_D_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_D_.glyph index c748eb7..6c1ebb2 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_D_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_D_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54BD; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (92,727,l), (92,698,l), (261,698,l), -(261,229,l), -(92,229,l), -(92,199,l), -(290,199,l), +(261,189,l), +(92,189,l), +(92,159,l), +(290,159,l), (290,727,l) ); }, @@ -21,70 +22,68 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); }, { closed = 1; nodes = ( -(466,512,l), -(466,482,l), -(850,482,l), -(850,512,l) +(466,492,l), +(466,462,l), +(850,462,l), +(850,492,l) ); }, { closed = 1; nodes = ( -(410,21,l), -(410,-9,l), -(909,-9,l), -(909,21,l) +(410,-19,l), +(410,-49,l), +(909,-49,l), +(909,-19,l) ); }, { closed = 1; nodes = ( -(639,711,l), -(639,570,ls), -(639,416,o), -(625,229,o), -(459,80,c), -(466,75,o), -(476,67,o), -(480,61,c), -(651,216,o), -(668,407,o), -(668,570,cs), -(668,711,l) +(639,691,l), +(639,550,ls), +(639,396,o), +(625,209,o), +(459,60,c), +(480,41,l), +(651,196,o), +(668,387,o), +(668,550,cs), +(668,691,l) ); }, { closed = 1; nodes = ( (389,785,l), -(389,-70,l), -(419,-70,l), +(389,-49,l), +(419,-49,l), (419,756,l), (892,756,l), -(892,-63,l), -(921,-63,l), +(892,-49,l), +(921,-49,l), (921,785,l) ); }, { closed = 1; nodes = ( -(634,419,l), -(701,309,o), -(780,159,o), -(819,76,c), -(845,88,l), -(806,171,o), -(726,318,o), -(659,427,c) +(634,399,l), +(701,289,o), +(780,139,o), +(819,56,c), +(845,68,l), +(806,151,o), +(726,298,o), +(659,407,c) ); } ); @@ -100,10 +99,10 @@ nodes = ( (136,773,l), (136,640,l), (216,640,l), -(216,298,l), -(136,298,l), -(136,165,l), -(337,165,l), +(216,248,l), +(136,248,l), +(136,115,l), +(337,115,l), (337,773,l) ); }, @@ -111,70 +110,68 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(183,80,l), +(59,115,l), +(183,115,l), (183,773,l) ); }, { closed = 1; nodes = ( -(534,538,l), -(534,422,l), -(787,422,l), -(787,538,l) +(534,528,l), +(534,412,l), +(787,412,l), +(787,528,l) ); }, { closed = 1; nodes = ( -(477,81,l), -(477,-48,l), -(860,-48,l), -(860,81,l) +(477,61,l), +(477,-68,l), +(860,-68,l), +(860,61,l) ); }, { closed = 1; nodes = ( -(608,664,l), -(608,542,ls), -(608,432,o), -(596,291,o), -(486,182,c), -(514,164,o), -(555,126,o), -(574,101,c), -(704,231,o), -(719,404,o), -(719,540,cs), -(719,664,l) +(608,654,l), +(608,532,ls), +(608,422,o), +(596,281,o), +(486,172,c), +(574,91,l), +(704,221,o), +(719,394,o), +(719,530,cs), +(719,654,l) ); }, { closed = 1; nodes = ( (384,808,l), -(384,-99,l), -(513,-99,l), +(384,-68,l), +(513,-68,l), (513,679,l), (812,679,l), -(812,-91,l), -(947,-91,l), +(812,-68,l), +(947,-68,l), (947,808,l) ); }, { closed = 1; nodes = ( -(599,374,l), -(650,291,o), -(710,180,o), -(735,112,c), -(829,172,l), -(802,239,o), -(737,346,o), -(686,425,c) +(599,364,l), +(650,281,o), +(710,170,o), +(735,102,c), +(829,162,l), +(802,229,o), +(737,336,o), +(686,415,c) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_F_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_F_.glyph index b0894b0..6fb59df 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_F_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54B_F_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54BF; layers = ( { @@ -11,9 +12,7 @@ nodes = ( (439,670,o), (373,510,o), (289,405,c), -(297,401,o), -(309,391,o), -(315,386,c), +(315,386,l), (396,496,o), (464,656,o), (509,825,c) @@ -22,10 +21,10 @@ nodes = ( { closed = 1; nodes = ( -(492,537,l), -(492,508,l), -(956,508,l), -(956,537,l) +(492,517,l), +(492,488,l), +(956,488,l), +(956,517,l) ); }, { @@ -34,18 +33,18 @@ nodes = ( (555,763,l), (555,733,l), (859,733,l), -(859,207,l), -(888,207,l), +(859,238,l), +(888,238,l), (888,763,l) ); }, { closed = 1; nodes = ( -(528,308,l), -(528,278,l), -(873,278,l), -(873,308,l) +(528,268,l), +(528,238,l), +(873,238,l), +(873,268,l) ); }, { @@ -56,9 +55,7 @@ nodes = ( (669,274,o), (665,64,o), (519,-57,c), -(525,-62,o), -(534,-72,o), -(539,-79,c), +(539,-79,l), (689,52,o), (698,267,o), (698,422,cs), @@ -71,10 +68,10 @@ nodes = ( (98,745,l), (98,716,l), (255,716,l), -(255,252,l), -(98,252,l), -(98,223,l), -(284,223,l), +(255,212,l), +(98,212,l), +(98,183,l), +(284,183,l), (284,745,l) ); }, @@ -82,8 +79,8 @@ nodes = ( closed = 1; nodes = ( (84,745,l), -(84,158,l), -(113,158,l), +(84,183,l), +(113,183,l), (113,745,l) ); }, @@ -111,9 +108,7 @@ nodes = ( (404,703,o), (334,554,o), (253,460,c), -(279,431,o), -(323,368,o), -(340,338,c), +(340,338,l), (436,455,o), (522,642,o), (574,818,c) @@ -122,10 +117,10 @@ nodes = ( { closed = 1; nodes = ( -(536,567,l), -(536,433,l), -(978,433,l), -(978,567,l) +(536,547,l), +(536,413,l), +(978,413,l), +(978,547,l) ); }, { @@ -134,18 +129,18 @@ nodes = ( (565,795,l), (565,661,l), (805,661,l), -(805,145,l), -(933,145,l), +(805,163,l), +(933,163,l), (933,795,l) ); }, { closed = 1; nodes = ( -(554,337,l), -(554,203,l), -(888,203,l), -(888,337,l) +(554,297,l), +(554,163,l), +(888,163,l), +(888,297,l) ); }, { @@ -156,9 +151,7 @@ nodes = ( (623,299,o), (615,95,o), (525,-10,c), -(557,-32,o), -(600,-76,o), -(620,-103,c), +(620,-103,l), (733,34,o), (749,258,o), (749,430,cs), @@ -171,10 +164,10 @@ nodes = ( (138,772,l), (138,643,l), (208,643,l), -(208,313,l), -(138,313,l), -(138,184,l), -(317,184,l), +(208,253,l), +(138,253,l), +(138,124,l), +(317,124,l), (317,772,l) ); }, @@ -182,8 +175,8 @@ nodes = ( closed = 1; nodes = ( (55,772,l), -(55,92,l), -(162,92,l), +(55,124,l), +(162,124,l), (162,772,l) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_0.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_0.glyph index ac36469..f6663e3 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_0.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_0.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni54C0; layers = ( { +guides = ( +{ +angle = 197.4824; +pos = (554,24); +} +); layerId = m01; shapes = ( { @@ -38,9 +45,7 @@ nodes = ( (573,142,o), (728,8,o), (934,-49,c), -(939,-41,o), -(947,-30,o), -(955,-23,c), +(955,-23,l), (749,27,o), (596,159,o), (527,346,c) @@ -79,9 +84,7 @@ nodes = ( (359,252,o), (191,177,o), (47,135,c), -(52,128,o), -(60,111,o), -(62,104,c), +(62,104,l), (210,153,o), (380,233,o), (469,338,c) @@ -90,13 +93,9 @@ nodes = ( { closed = 1; nodes = ( -(258,-76,l), -(274,-65,o), -(300,-56,o), -(554,24,c), -(553,30,o), -(551,41,o), -(551,49,c), +(255,-70,l), +(554,24,l), +(551,49,l), (280,-30,l), (258,-48,l) ); @@ -104,18 +103,17 @@ nodes = ( { closed = 1; nodes = ( -(258,-63,o), -(312,-40,o), -(312,-40,c), +(273,-60,ls), +(295,-48,o), +(312,-22,o), +(312,3,cs), (312,219,l), (282,219,l), (282,6,ls), (282,-29,o), (256,-41,o), (242,-46,c), -(248,-54,o), -(255,-67,o), -(258,-76,c) +(255,-70,l) ); } ); @@ -123,6 +121,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 196.1226; +pos = (563,-2); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -159,9 +163,7 @@ nodes = ( (546,113,o), (661,-23,o), (890,-83,c), -(909,-45,o), -(948,12,o), -(978,41,c), +(978,41,l), (770,82,o), (653,192,o), (598,356,c) @@ -200,9 +202,7 @@ nodes = ( (307,283,o), (149,213,o), (11,176,c), -(29,144,o), -(58,72,o), -(67,41,c), +(67,41,l), (223,97,o), (397,194,o), (502,308,c) @@ -211,13 +211,9 @@ nodes = ( { closed = 1; nodes = ( -(232,-108,l), -(260,-90,o), -(307,-76,o), -(563,-2,c), -(558,28,o), -(555,87,o), -(557,125,c), +(229,-99,l), +(563,-2,l), +(557,125,l), (271,49,l), (217,7,l) ); @@ -225,18 +221,17 @@ nodes = ( { closed = 1; nodes = ( -(232,-67,o), -(397,-10,o), -(397,-10,c), +(275,-75,ls), +(336,-43,o), +(397,20,o), +(397,89,cs), (397,240,l), (258,240,l), (258,104,ls), (258,66,o), (214,46,o), (182,37,c), -(204,-2,o), -(225,-70,o), -(232,-108,c) +(229,-99,l) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_1.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_1.glyph index 849fdef..bc2855d 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_1.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_1.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54C1; layers = ( { @@ -9,61 +10,61 @@ closed = 1; nodes = ( (280,756,l), (727,756,l), -(727,511,l), -(280,511,l) +(727,501,l), +(280,501,l) ); }, { closed = 1; nodes = ( (250,785,l), -(250,481,l), -(757,481,l), +(250,471,l), +(757,471,l), (757,785,l) ); }, { closed = 1; nodes = ( -(96,352,l), -(96,-70,l), -(126,-70,l), -(126,323,l), -(396,323,l), -(396,-59,l), -(426,-59,l), -(426,352,l) +(96,342,l), +(96,-52,l), +(126,-52,l), +(126,313,l), +(396,313,l), +(396,-52,l), +(426,-52,l), +(426,342,l) ); }, { closed = 1; nodes = ( -(560,352,l), -(560,-70,l), -(589,-70,l), -(589,323,l), -(886,323,l), -(886,-63,l), -(916,-63,l), -(916,352,l) +(560,342,l), +(560,-52,l), +(589,-52,l), +(589,313,l), +(886,313,l), +(886,-52,l), +(916,-52,l), +(916,342,l) ); }, { closed = 1; nodes = ( -(111,18,l), -(111,-12,l), -(407,-12,l), -(407,18,l) +(111,-22,l), +(111,-52,l), +(407,-52,l), +(407,-22,l) ); }, { closed = 1; nodes = ( -(578,18,l), -(578,-12,l), -(892,-12,l), -(892,18,l) +(578,-22,l), +(578,-52,l), +(892,-52,l), +(892,-22,l) ); } ); @@ -78,61 +79,61 @@ closed = 1; nodes = ( (336,678,l), (661,678,l), -(661,575,l), -(336,575,l) +(661,565,l), +(336,565,l) ); }, { closed = 1; nodes = ( (196,817,l), -(196,437,l), -(810,437,l), +(196,427,l), +(810,427,l), (810,817,l) ); }, { closed = 1; nodes = ( -(63,366,l), -(63,-95,l), -(200,-95,l), -(200,227,l), -(315,227,l), -(315,-91,l), -(460,-91,l), -(460,366,l) +(63,356,l), +(63,-77,l), +(200,-77,l), +(200,217,l), +(315,217,l), +(315,-77,l), +(460,-77,l), +(460,356,l) ); }, { closed = 1; nodes = ( -(531,366,l), -(531,-95,l), -(670,-95,l), -(670,227,l), -(792,227,l), -(792,-91,l), -(938,-91,l), -(938,366,l) +(531,356,l), +(531,-77,l), +(670,-77,l), +(670,217,l), +(792,217,l), +(792,-77,l), +(938,-77,l), +(938,356,l) ); }, { closed = 1; nodes = ( -(123,92,l), -(123,-47,l), -(376,-47,l), -(376,92,l) +(123,62,l), +(123,-77,l), +(376,-77,l), +(376,62,l) ); }, { closed = 1; nodes = ( -(596,92,l), -(596,-47,l), -(867,-47,l), -(867,92,l) +(596,62,l), +(596,-77,l), +(867,-77,l), +(867,62,l) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_2.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_2.glyph index c27c028..58a5645 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_2.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_2.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54C2; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (95,727,l), (95,698,l), (279,698,l), -(279,229,l), -(95,229,l), -(95,199,l), -(308,199,l), +(279,189,l), +(95,189,l), +(95,159,l), +(308,159,l), (308,727,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); }, @@ -38,22 +39,22 @@ nodes = ( { closed = 1; nodes = ( -(419,42,l), -(419,13,l), -(905,13,l), -(905,42,l) +(419,-28,l), +(419,-57,l), +(905,-57,l), +(905,-28,l) ); }, { closed = 1; nodes = ( (400,591,l), -(400,-65,l), -(429,-65,l), +(400,-57,l), +(429,-57,l), (429,562,l), (891,562,l), -(891,-59,l), -(920,-59,l), +(891,-57,l), +(920,-57,l), (920,591,l) ); }, @@ -79,16 +80,14 @@ nodes = ( closed = 1; nodes = ( (564,576,l), -(564,458,ls), -(564,388,o), -(544,306,o), -(443,244,c), -(450,239,o), -(460,229,o), -(464,222,c), -(571,288,o), -(593,381,o), -(593,458,cs), +(564,438,ls), +(564,368,o), +(544,286,o), +(443,224,c), +(464,202,l), +(571,268,o), +(593,361,o), +(593,438,cs), (593,576,l) ); }, @@ -96,28 +95,22 @@ nodes = ( closed = 1; nodes = ( (704,576,l), -(704,326,ls), -(704,284,o), -(718,278,o), -(765,278,cs), -(773,278,o), -(865,278,o), -(873,278,cs), -(904,278,o), -(915,286,o), -(917,299,c), -(908,302,o), -(897,305,o), -(889,311,c), -(887,309,o), -(884,308,o), -(868,308,cs), -(851,308,o), -(776,308,o), -(765,308,cs), -(737,308,o), -(733,311,o), -(733,326,cs), +(704,306,ls), +(704,264,o), +(718,258,o), +(765,258,cs), +(773,258,o), +(865,258,o), +(873,258,c), +(899,258,l), +(899,288,l), +(868,288,l), +(851,288,o), +(776,288,o), +(765,288,cs), +(737,288,o), +(733,291,o), +(733,306,cs), (733,576,l) ); } @@ -134,10 +127,10 @@ nodes = ( (137,773,l), (137,640,l), (231,640,l), -(231,298,l), -(137,298,l), -(137,165,l), -(354,165,l), +(231,238,l), +(137,238,l), +(137,105,l), +(354,105,l), (354,773,l) ); }, @@ -145,8 +138,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(190,80,l), +(59,105,l), +(190,105,l), (190,773,l) ); }, @@ -162,22 +155,22 @@ nodes = ( { closed = 1; nodes = ( -(465,88,l), -(465,-41,l), -(875,-41,l), -(875,88,l) +(465,58,l), +(465,-71,l), +(875,-71,l), +(875,58,l) ); }, { closed = 1; nodes = ( (394,602,l), -(394,-93,l), -(518,-93,l), +(394,-71,l), +(518,-71,l), (518,475,l), (820,475,l), -(820,-93,l), -(951,-93,l), +(820,-71,l), +(951,-71,l), (951,602,l) ); }, @@ -203,16 +196,14 @@ nodes = ( closed = 1; nodes = ( (553,552,l), -(553,437,ls), -(553,376,o), -(546,303,o), -(486,246,c), -(505,232,o), -(544,191,o), -(558,170,c), -(636,241,o), -(653,350,o), -(653,435,cs), +(553,417,ls), +(553,356,o), +(546,283,o), +(486,226,c), +(558,150,l), +(636,221,o), +(653,330,o), +(653,415,cs), (653,552,l) ); }, @@ -220,28 +211,22 @@ nodes = ( closed = 1; nodes = ( (676,556,l), -(676,340,ls), -(676,245,o), -(694,217,o), -(770,217,cs), -(785,217,o), -(808,217,o), -(823,217,cs), -(873,217,o), -(902,234,o), -(915,286,c), -(885,292,o), -(844,309,o), -(827,325,c), -(824,320,o), -(821,318,o), -(810,318,cs), -(806,318,o), -(792,318,o), -(788,318,cs), -(777,318,o), -(775,320,o), -(775,343,cs), +(676,320,ls), +(676,225,o), +(694,197,o), +(770,197,cs), +(785,197,o), +(808,197,o), +(823,197,c), +(858,197,l), +(858,298,l), +(810,298,l), +(806,298,o), +(792,298,o), +(788,298,cs), +(777,298,o), +(775,300,o), +(775,323,cs), (775,556,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_4.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_4.glyph index 2746dc4..3e7e08c 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_4.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_4.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54C4; layers = ( { @@ -47,9 +48,7 @@ nodes = ( (468,82,o), (394,2,o), (319,-52,c), -(327,-56,o), -(339,-65,o), -(344,-70,c), +(344,-70,l), (417,-15,o), (492,70,o), (540,159,c) @@ -74,10 +73,10 @@ nodes = ( (101,734,l), (101,705,l), (293,705,l), -(293,199,l), -(101,199,l), -(101,170,l), -(323,170,l), +(293,159,l), +(101,159,l), +(101,130,l), +(323,130,l), (323,734,l) ); }, @@ -85,8 +84,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(115,94,l), +(87,130,l), +(115,130,l), (115,734,l) ); } @@ -140,9 +139,7 @@ nodes = ( (472,117,o), (399,44,o), (325,0,c), -(359,-22,o), -(416,-69,o), -(444,-96,c), +(444,-96,l), (518,-40,o), (604,52,o), (656,142,c) @@ -167,10 +164,10 @@ nodes = ( (134,771,l), (134,631,l), (249,631,l), -(249,301,l), -(134,301,l), -(134,160,l), -(380,160,l), +(249,251,l), +(134,251,l), +(134,110,l), +(380,110,l), (380,771,l) ); }, @@ -178,8 +175,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(191,78,l), +(59,110,l), +(191,110,l), (191,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_6.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_6.glyph index d543a85..4671617 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_6.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_6.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54C6; layers = ( { @@ -11,9 +12,7 @@ nodes = ( (600,753,o), (500,660,o), (363,596,c), -(370,592,o), -(379,583,o), -(384,576,c), +(384,576,l), (525,644,o), (624,739,o), (680,825,c) @@ -26,9 +25,7 @@ nodes = ( (648,381,o), (531,272,o), (369,200,c), -(377,195,o), -(385,186,o), -(390,180,c), +(390,180,l), (557,256,o), (672,367,o), (736,467,c) @@ -51,13 +48,11 @@ nodes = ( (762,551,o), (554,446,o), (363,402,c), -(369,396,o), -(377,385,o), -(379,377,c), +(379,377,l), (575,426,o), (786,533,o), (875,719,c), -(857,730,l), +(859,728,l), (851,728,l) ); }, @@ -78,13 +73,11 @@ nodes = ( (824,120,o), (575,-4,o), (330,-47,c), -(336,-54,o), -(343,-65,o), -(346,-74,c), +(346,-74,l), (598,-24,o), (849,100,o), (942,368,c), -(923,378,l), +(925,376,l), (917,376,l) ); }, @@ -120,10 +113,10 @@ nodes = ( (102,734,l), (102,705,l), (282,705,l), -(282,199,l), -(102,199,l), -(102,170,l), -(312,170,l), +(282,159,l), +(102,159,l), +(102,130,l), +(312,130,l), (312,734,l) ); }, @@ -131,8 +124,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,130,l), +(117,130,l), (117,734,l) ); } @@ -150,9 +143,7 @@ nodes = ( (560,784,o), (472,706,o), (350,649,c), -(379,628,o), -(423,582,o), -(443,551,c), +(443,551,l), (579,628,o), (676,718,o), (754,825,c) @@ -165,9 +156,7 @@ nodes = ( (610,394,o), (517,303,o), (370,239,c), -(399,217,o), -(441,168,o), -(459,136,c), +(459,136,l), (622,221,o), (727,327,o), (804,455,c) @@ -190,13 +179,11 @@ nodes = ( (734,604,o), (561,504,o), (367,463,c), -(393,436,o), -(426,385,o), -(442,351,c), +(442,351,l), (663,411,o), (853,522,o), (942,727,c), -(847,773,l), +(857,768,l), (823,768,l) ); }, @@ -217,13 +204,11 @@ nodes = ( (768,183,o), (583,63,o), (353,16,c), -(380,-14,o), -(413,-68,o), -(428,-104,c), +(428,-104,l), (691,-35,o), (893,96,o), (983,360,c), -(885,405,l), +(898,399,l), (860,399,l) ); }, @@ -259,10 +244,10 @@ nodes = ( (140,757,l), (140,617,l), (243,617,l), -(243,287,l), -(140,287,l), -(140,146,l), -(376,146,l), +(243,227,l), +(140,227,l), +(140,86,l), +(376,86,l), (376,757,l) ); }, @@ -270,8 +255,8 @@ nodes = ( closed = 1; nodes = ( (59,757,l), -(59,64,l), -(191,64,l), +(59,86,l), +(191,86,l), (191,757,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_7.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_7.glyph index 6157bde..dedee6f 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_7.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_7.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54C7; layers = ( { @@ -64,10 +65,10 @@ nodes = ( (95,727,l), (95,698,l), (279,698,l), -(279,229,l), -(95,229,l), -(95,199,l), -(308,199,l), +(279,189,l), +(95,189,l), +(95,159,l), +(308,159,l), (308,727,l) ); }, @@ -75,8 +76,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -147,10 +148,10 @@ nodes = ( (134,773,l), (134,640,l), (237,640,l), -(237,298,l), -(134,298,l), -(134,165,l), -(364,165,l), +(237,258,l), +(134,258,l), +(134,125,l), +(364,125,l), (364,773,l) ); }, @@ -158,8 +159,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(187,80,l), +(59,125,l), +(187,125,l), (187,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_8.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_8.glyph index 1bc021d..cafcd07 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_8.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_8.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54C8; layers = ( { @@ -7,32 +8,32 @@ shapes = ( { closed = 1; nodes = ( -(481,499,l), -(481,470,l), -(809,470,l), -(809,499,l) +(481,489,l), +(481,460,l), +(809,460,l), +(809,489,l) ); }, { closed = 1; nodes = ( -(459,15,l), -(459,-15,l), -(835,-15,l), -(835,15,l) +(459,-25,l), +(459,-55,l), +(835,-55,l), +(835,-25,l) ); }, { closed = 1; nodes = ( -(441,324,l), -(441,-74,l), -(471,-74,l), -(471,294,l), -(819,294,l), -(819,-70,l), -(848,-70,l), -(848,324,l) +(441,314,l), +(441,-55,l), +(471,-55,l), +(471,284,l), +(819,284,l), +(819,-55,l), +(848,-55,l), +(848,314,l) ); }, { @@ -42,9 +43,7 @@ nodes = ( (697,659,o), (818,515,o), (922,446,c), -(928,454,o), -(939,466,o), -(947,472,c), +(947,472,l), (841,533,o), (721,674,o), (660,805,c) @@ -57,9 +56,7 @@ nodes = ( (592,686,o), (484,548,o), (348,453,c), -(356,448,o), -(367,440,o), -(373,434,c), +(373,434,l), (510,532,o), (617,672,o), (675,817,c) @@ -71,10 +68,10 @@ nodes = ( (95,727,l), (95,698,l), (284,698,l), -(284,229,l), -(95,229,l), -(95,199,l), -(314,199,l), +(284,189,l), +(95,189,l), +(95,159,l), +(314,159,l), (314,727,l) ); }, @@ -82,8 +79,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -97,32 +94,32 @@ shapes = ( { closed = 1; nodes = ( -(499,533,l), -(499,402,l), -(833,402,l), -(833,533,l) +(499,523,l), +(499,392,l), +(833,392,l), +(833,523,l) ); }, { closed = 1; nodes = ( -(491,76,l), -(491,-51,l), -(811,-51,l), -(811,76,l) +(491,46,l), +(491,-81,l), +(811,-81,l), +(811,46,l) ); }, { closed = 1; nodes = ( -(437,340,l), -(437,-96,l), -(578,-96,l), -(578,213,l), -(734,213,l), -(734,-96,l), -(883,-96,l), -(883,340,l) +(437,330,l), +(437,-81,l), +(578,-81,l), +(578,203,l), +(734,203,l), +(734,-81,l), +(883,-81,l), +(883,330,l) ); }, { @@ -132,9 +129,7 @@ nodes = ( (666,627,o), (766,483,o), (888,401,c), -(911,438,o), -(957,492,o), -(990,520,c), +(990,520,l), (873,583,o), (768,699,o), (714,817,c) @@ -147,9 +142,7 @@ nodes = ( (561,718,o), (462,579,o), (336,501,c), -(368,477,o), -(416,423,o), -(437,392,c), +(437,392,l), (578,490,o), (682,640,o), (745,820,c) @@ -161,10 +154,10 @@ nodes = ( (137,773,l), (137,640,l), (234,640,l), -(234,298,l), -(137,298,l), -(137,165,l), -(367,165,l), +(234,238,l), +(137,238,l), +(137,105,l), +(367,105,l), (367,773,l) ); }, @@ -172,8 +165,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(190,80,l), +(59,105,l), +(190,105,l), (190,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_9.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_9.glyph index efe0f89..25a338b 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_9.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_9.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54C9; layers = ( { @@ -14,9 +15,7 @@ nodes = ( (927,-70,o), (943,-20,o), (951,125,c), -(943,127,o), -(930,132,o), -(923,138,c), +(923,138,l), (917,8,o), (905,-40,o), (871,-40,cs), @@ -69,8 +68,8 @@ nodes = ( closed = 1; nodes = ( (127,368,l), -(127,-16,l), -(156,-16,l), +(127,22,l), +(156,22,l), (156,368,l) ); }, @@ -80,10 +79,10 @@ nodes = ( (145,368,l), (145,338,l), (458,338,l), -(458,91,l), -(145,91,l), -(145,62,l), -(487,62,l), +(458,51,l), +(145,51,l), +(145,22,l), +(487,22,l), (487,368,l) ); }, @@ -94,9 +93,7 @@ nodes = ( (783,230,o), (642,48,o), (455,-49,c), -(463,-55,o), -(473,-64,o), -(478,-70,c), +(478,-70,l), (667,30,o), (809,215,o), (884,414,c) @@ -119,9 +116,7 @@ nodes = ( (913,-92,o), (955,-53,o), (975,117,c), -(940,132,o), -(892,165,o), -(862,197,c), +(862,197,l), (858,95,o), (849,52,o), (832,52,cs), @@ -174,8 +169,8 @@ nodes = ( closed = 1; nodes = ( (96,366,l), -(96,-53,l), -(237,-53,l), +(96,2,l), +(237,2,l), (237,366,l) ); }, @@ -185,10 +180,10 @@ nodes = ( (190,366,l), (190,235,l), (374,235,l), -(374,143,l), -(190,143,l), -(190,12,l), -(517,12,l), +(374,133,l), +(190,133,l), +(190,2,l), +(517,2,l), (517,366,l) ); }, @@ -199,9 +194,7 @@ nodes = ( (739,244,o), (603,108,o), (458,27,c), -(496,-4,o), -(538,-52,o), -(560,-89,c), +(560,-89,l), (717,18,o), (853,169,o), (943,361,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_C_.glyph index ca79eef..41da6b0 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_C_.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni54CC; layers = ( { +guides = ( +{ +angle = 205.2481; +pos = (739,47); +} +); layerId = m01; shapes = ( { @@ -10,10 +17,10 @@ nodes = ( (102,740,l), (102,711,l), (271,711,l), -(271,205,l), -(102,205,l), -(102,176,l), -(300,176,l), +(271,165,l), +(102,165,l), +(102,136,l), +(300,136,l), (300,740,l) ); }, @@ -21,8 +28,8 @@ nodes = ( closed = 1; nodes = ( (87,740,l), -(87,100,l), -(117,100,l), +(87,136,l), +(117,136,l), (117,740,l) ); }, @@ -63,9 +70,7 @@ nodes = ( (709,305,o), (790,67,o), (932,-44,c), -(938,-36,o), -(948,-27,o), -(955,-21,c), +(955,-21,l), (815,80,o), (732,317,o), (694,580,c) @@ -92,9 +97,7 @@ nodes = ( (408,310,o), (397,97,o), (297,-59,c), -(304,-62,o), -(317,-68,o), -(323,-74,c), +(323,-74,l), (424,83,o), (437,306,o), (437,465,cs), @@ -104,13 +107,9 @@ nodes = ( { closed = 1; nodes = ( -(527,-61,l), -(540,-48,o), -(563,-36,o), -(739,47,c), -(737,53,o), -(733,66,o), -(732,74,c), +(524,-55,l), +(739,47,l), +(732,74,l), (546,-9,l), (526,-29,l) ); @@ -118,18 +117,17 @@ nodes = ( { closed = 1; nodes = ( -(527,-47,o), -(574,-21,o), -(574,-21,c), +(535,-47,ls), +(556,-31,o), +(574,-4,o), +(574,22,cs), (574,568,l), (545,568,l), (545,25,ls), (545,-13,o), (524,-25,o), (511,-30,c), -(517,-39,o), -(525,-53,o), -(527,-61,c) +(524,-55,l) ); } ); @@ -137,6 +135,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 202.5946; +pos = (768,21); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -145,10 +149,10 @@ nodes = ( (116,765,l), (116,625,l), (233,625,l), -(233,295,l), -(116,295,l), -(116,154,l), -(357,154,l), +(233,285,l), +(116,285,l), +(116,144,l), +(357,144,l), (357,765,l) ); }, @@ -156,8 +160,8 @@ nodes = ( closed = 1; nodes = ( (59,765,l), -(59,72,l), -(180,72,l), +(59,144,l), +(180,144,l), (180,765,l) ); }, @@ -198,9 +202,7 @@ nodes = ( (711,267,o), (765,49,o), (880,-80,c), -(903,-41,o), -(951,13,o), -(984,39,c), +(984,39,l), (877,141,o), (818,331,o), (788,522,c) @@ -227,9 +229,7 @@ nodes = ( (394,350,o), (386,123,o), (285,-32,c), -(315,-45,o), -(370,-78,o), -(393,-99,c), +(393,-99,l), (500,68,o), (518,334,o), (518,508,cs), @@ -239,13 +239,9 @@ nodes = ( { closed = 1; nodes = ( -(553,-85,l), -(573,-67,o), -(607,-46,o), -(768,21,c), -(758,48,o), -(745,98,o), -(740,134,c), +(547,-71,l), +(768,21,l), +(740,134,l), (573,72,l), (534,33,l) ); @@ -253,18 +249,17 @@ nodes = ( { closed = 1; nodes = ( -(553,-41,o), -(668,17,o), -(668,17,c), +(586,-43,ls), +(631,-10,o), +(668,48,o), +(668,104,cs), (668,583,l), (542,583,l), (542,108,ls), (542,66,o), (522,43,o), (502,31,c), -(521,4,o), -(545,-53,o), -(553,-85,c) +(547,-71,l) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_D_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_D_.glyph index a24042d..341c8cc 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_D_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_D_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54CD; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (95,727,l), (95,698,l), (279,698,l), -(279,229,l), -(95,229,l), -(95,199,l), -(308,199,l), +(279,189,l), +(95,189,l), +(95,159,l), +(308,159,l), (308,727,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); }, @@ -37,9 +38,7 @@ nodes = ( (863,-33,o), (820,-33,o), (769,-31,c), -(773,-41,o), -(778,-55,o), -(780,-63,c), +(780,-63,l), (840,-64,o), (878,-63,o), (897,-57,cs), @@ -75,10 +74,10 @@ nodes = ( (564,480,l), (564,451,l), (750,451,l), -(750,194,l), -(564,194,l), -(564,165,l), -(779,165,l), +(750,134,l), +(564,134,l), +(564,105,l), +(779,105,l), (779,480,l) ); }, @@ -108,10 +107,10 @@ nodes = ( (137,773,l), (137,640,l), (231,640,l), -(231,298,l), -(137,298,l), -(137,165,l), -(349,165,l), +(231,238,l), +(137,238,l), +(137,105,l), +(349,105,l), (349,773,l) ); }, @@ -119,8 +118,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(184,80,l), +(59,105,l), +(184,105,l), (184,773,l) ); }, @@ -135,9 +134,7 @@ nodes = ( (782,29,o), (742,28,o), (711,31,c), -(728,-3,o), -(747,-61,o), -(752,-97,c), +(752,-97,l), (818,-98,o), (866,-95,o), (904,-73,cs), @@ -173,10 +170,10 @@ nodes = ( (611,511,l), (611,413,l), (687,413,l), -(687,247,l), -(611,247,l), -(611,149,l), -(778,149,l), +(687,195,l), +(611,195,l), +(611,97,l), +(778,97,l), (778,511,l) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_E_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_E_.glyph index 15b0bad..4004b8c 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_E_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_E_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54CE; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (100,723,l), (100,694,l), (280,694,l), -(280,261,l), -(100,261,l), -(100,231,l), -(310,231,l), +(280,221,l), +(100,221,l), +(100,191,l), +(310,191,l), (310,723,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (83,723,l), -(83,132,l), -(112,132,l), +(83,191,l), +(112,191,l), (112,723,l) ); }, @@ -33,9 +34,7 @@ nodes = ( (732,220,o), (572,48,o), (287,-45,c), -(294,-52,o), -(303,-65,o), -(307,-71,c), +(307,-71,l), (592,32,o), (758,202,o), (837,516,c) @@ -48,9 +47,7 @@ nodes = ( (506,216,o), (668,12,o), (940,-70,c), -(945,-62,o), -(953,-52,o), -(960,-46,c), +(960,-46,l), (688,29,o), (528,232,o), (457,520,c) @@ -96,10 +93,10 @@ nodes = ( (132,762,l), (132,627,l), (235,627,l), -(235,300,l), -(132,300,l), -(132,166,l), -(372,166,l), +(235,250,l), +(132,250,l), +(132,116,l), +(372,116,l), (372,762,l) ); }, @@ -107,8 +104,8 @@ nodes = ( closed = 1; nodes = ( (54,762,l), -(54,91,l), -(189,91,l), +(54,116,l), +(189,116,l), (189,762,l) ); }, @@ -119,9 +116,7 @@ nodes = ( (741,259,o), (593,107,o), (322,33,c), -(348,3,o), -(388,-60,o), -(402,-92,c), +(402,-92,l), (694,6,o), (861,188,o), (939,506,c) @@ -134,9 +129,7 @@ nodes = ( (505,207,o), (634,3,o), (898,-96,c), -(918,-58,o), -(960,-1,o), -(992,28,c), +(992,28,l), (748,105,o), (616,288,o), (556,529,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_F_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_F_.glyph index 31d1695..9102262 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_F_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54C_F_.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni54CF; layers = ( { +guides = ( +{ +angle = 196.1892; +pos = (659,13); +} +); layerId = m01; shapes = ( { @@ -33,9 +40,7 @@ nodes = ( (623,164,o), (744,8,o), (925,-60,c), -(930,-51,o), -(939,-40,o), -(947,-33,c), +(947,-33,l), (767,27,o), (647,180,o), (595,381,c) @@ -57,13 +62,9 @@ nodes = ( { closed = 1; nodes = ( -(403,-68,l), -(418,-58,o), -(442,-50,o), -(659,13,c), -(658,19,o), -(657,32,o), -(657,40,c), +(400,-62,l), +(659,13,l), +(657,40,l), (425,-21,l), (402,-39,l) ); @@ -71,18 +72,17 @@ nodes = ( { closed = 1; nodes = ( -(403,-56,o), -(443,-29,o), -(443,-29,c), +(412,-54,ls), +(433,-40,o), +(443,-11,o), +(443,14,cs), (443,782,l), (414,782,l), (414,17,ls), (414,-20,o), (397,-33,o), (386,-38,c), -(392,-47,o), -(400,-61,o), -(403,-68,c) +(400,-62,l) ); }, { @@ -91,10 +91,10 @@ nodes = ( (102,733,l), (102,704,l), (294,704,l), -(294,234,l), -(102,234,l), -(102,205,l), -(324,205,l), +(294,194,l), +(102,194,l), +(102,165,l), +(324,165,l), (324,733,l) ); }, @@ -102,8 +102,8 @@ nodes = ( closed = 1; nodes = ( (91,733,l), -(91,102,l), -(121,102,l), +(91,165,l), +(121,165,l), (121,733,l) ); } @@ -112,6 +112,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 193.5411; +pos = (688,-20); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -143,9 +149,7 @@ nodes = ( (633,170,o), (711,-2,o), (880,-93,c), -(900,-54,o), -(945,4,o), -(977,32,c), +(977,32,l), (826,99,o), (746,244,o), (708,417,c) @@ -167,13 +171,9 @@ nodes = ( { closed = 1; nodes = ( -(429,-99,l), -(455,-82,o), -(497,-66,o), -(688,-20,c), -(683,12,o), -(681,71,o), -(682,112,c), +(421,-84,l), +(688,-20,l), +(682,112,l), (472,70,l), (416,26,l) ); @@ -181,18 +181,17 @@ nodes = ( { closed = 1; nodes = ( -(429,-48,o), -(562,29,o), -(562,29,c), +(471,-52,ls), +(519,-21,o), +(562,36,o), +(562,93,cs), (562,817,l), (420,817,l), (420,109,ls), (420,60,o), (392,28,o), (368,13,c), -(389,-11,o), -(419,-67,o), -(429,-99,c) +(421,-84,l) ); }, { @@ -201,10 +200,10 @@ nodes = ( (138,773,l), (138,640,l), (244,640,l), -(244,298,l), -(138,298,l), -(138,165,l), -(371,165,l), +(244,238,l), +(138,238,l), +(138,105,l), +(371,105,l), (371,773,l) ); }, @@ -212,8 +211,8 @@ nodes = ( closed = 1; nodes = ( (63,773,l), -(63,80,l), -(191,80,l), +(63,105,l), +(191,105,l), (191,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_0.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_0.glyph index 58c7358..07dfce6 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_0.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_0.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54D0; layers = ( { @@ -59,10 +60,10 @@ nodes = ( (102,734,l), (102,705,l), (291,705,l), -(291,199,l), -(102,199,l), -(102,170,l), -(321,170,l), +(291,159,l), +(102,159,l), +(102,130,l), +(321,130,l), (321,734,l) ); }, @@ -70,8 +71,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,130,l), +(117,130,l), (117,734,l) ); } @@ -137,10 +138,10 @@ nodes = ( (133,771,l), (133,631,l), (242,631,l), -(242,301,l), -(133,301,l), -(133,160,l), -(370,160,l), +(242,241,l), +(133,241,l), +(133,100,l), +(370,100,l), (370,771,l) ); }, @@ -148,8 +149,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,78,l), -(186,78,l), +(59,100,l), +(186,100,l), (186,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_1.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_1.glyph index 9d60293..b314f57 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_1.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_1.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54D1; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (95,727,l), (95,698,l), (267,698,l), -(267,229,l), -(95,229,l), -(95,199,l), -(296,199,l), +(267,189,l), +(95,189,l), +(95,159,l), +(296,159,l), (296,727,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); }, @@ -101,10 +102,10 @@ nodes = ( (124,773,l), (124,640,l), (209,640,l), -(209,298,l), -(124,298,l), -(124,165,l), -(323,165,l), +(209,248,l), +(124,248,l), +(124,115,l), +(323,115,l), (323,773,l) ); }, @@ -112,8 +113,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(163,80,l), +(59,115,l), +(163,115,l), (163,773,l) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_2.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_2.glyph index cde0576..9431a84 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_2.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_2.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54D2; layers = ( { @@ -47,9 +48,7 @@ nodes = ( (784,-56,o), (893,-53,o), (947,-49,c), -(948,-38,o), -(952,-22,o), -(957,-15,c), +(957,-15,l), (891,-20,o), (790,-24,o), (727,-24,cs), @@ -69,9 +68,7 @@ nodes = ( (721,528,o), (714,289,o), (528,105,c), -(535,101,o), -(546,91,o), -(551,85,c), +(551,85,l), (740,278,o), (750,522,o), (750,683,cs), @@ -106,10 +103,10 @@ nodes = ( (100,751,l), (100,721,l), (245,721,l), -(245,197,l), -(100,197,l), -(100,168,l), -(275,168,l), +(245,157,l), +(100,157,l), +(100,128,l), +(275,128,l), (275,751,l) ); }, @@ -117,8 +114,8 @@ nodes = ( closed = 1; nodes = ( (85,751,l), -(85,67,l), -(115,67,l), +(85,128,l), +(115,128,l), (115,751,l) ); } @@ -172,9 +169,7 @@ nodes = ( (834,-95,o), (918,-91,o), (961,-88,c), -(963,-50,o), -(981,21,o), -(994,59,c), +(994,59,l), (931,49,o), (832,43,o), (775,43,cs), @@ -194,9 +189,7 @@ nodes = ( (686,531,o), (677,306,o), (533,157,c), -(569,135,o), -(617,93,o), -(639,65,c), +(639,65,l), (799,243,o), (821,496,o), (821,659,cs), @@ -231,10 +224,10 @@ nodes = ( (138,757,l), (138,617,l), (211,617,l), -(211,259,l), -(138,259,l), -(138,118,l), -(322,118,l), +(211,229,l), +(138,229,l), +(138,88,l), +(322,88,l), (322,757,l) ); }, @@ -242,8 +235,8 @@ nodes = ( closed = 1; nodes = ( (58,757,l), -(58,37,l), -(171,37,l), +(58,88,l), +(171,88,l), (171,757,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_3.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_3.glyph index e20cf25..683ff3b 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_3.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_3.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54D3; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (100,727,l), (100,698,l), (286,698,l), -(286,229,l), -(100,229,l), -(100,199,l), -(316,199,l), +(286,189,l), +(100,189,l), +(100,159,l), +(316,159,l), (316,727,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (89,727,l), -(89,96,l), -(119,96,l), +(89,159,l), +(119,159,l), (119,727,l) ); }, @@ -45,9 +46,7 @@ nodes = ( (908,351,o), (924,385,o), (931,491,c), -(922,494,o), -(912,498,o), -(905,505,c), +(905,505,l), (900,414,o), (890,380,o), (860,380,cs), @@ -63,9 +62,7 @@ nodes = ( (738,523,o), (552,449,o), (372,408,c), -(379,402,o), -(390,389,o), -(394,383,c), +(394,383,l), (570,429,o), (762,505,o), (857,626,c) @@ -94,9 +91,7 @@ nodes = ( (934,-56,o), (944,-30,o), (947,79,c), -(938,81,o), -(927,84,o), -(919,91,c), +(919,91,l), (917,-14,o), (912,-27,o), (884,-27,cs), @@ -116,9 +111,7 @@ nodes = ( (533,105,o), (492,4,o), (330,-49,c), -(337,-54,o), -(347,-65,o), -(350,-72,c), +(350,-72,l), (517,-14,o), (561,92,o), (574,282,c) @@ -137,10 +130,10 @@ nodes = ( (164,773,l), (164,640,l), (255,640,l), -(255,298,l), -(164,298,l), -(164,165,l), -(380,165,l), +(255,248,l), +(164,248,l), +(164,115,l), +(380,115,l), (380,773,l) ); }, @@ -148,8 +141,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(185,80,l), +(59,115,l), +(185,115,l), (185,773,l) ); }, @@ -172,9 +165,7 @@ nodes = ( (920,345,o), (958,366,o), (978,477,c), -(945,487,o), -(903,508,o), -(877,531,c), +(877,531,l), (872,482,o), (865,470,o), (840,470,cs), @@ -190,9 +181,7 @@ nodes = ( (747,583,o), (567,510,o), (387,473,c), -(413,446,o), -(453,388,o), -(470,358,c), +(470,358,l), (654,411,o), (849,502,o), (964,633,c) @@ -221,9 +210,7 @@ nodes = ( (942,-68,o), (972,-22,o), (981,129,c), -(947,138,o), -(891,160,o), -(864,182,c), +(864,182,l), (861,67,o), (858,43,o), (845,43,cs), @@ -243,9 +230,7 @@ nodes = ( (474,161,o), (461,83,o), (323,34,c), -(354,7,o), -(393,-52,o), -(409,-89,c), +(409,-89,l), (586,-15,o), (614,109,o), (624,272,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_4.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_4.glyph index b4cb8c4..d642165 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_4.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_4.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni54D4; layers = ( { +guides = ( +{ +angle = 196.6208; +pos = (633,444); +} +); layerId = m01; shapes = ( { @@ -45,9 +52,7 @@ nodes = ( (939,393,o), (948,418,o), (952,514,c), -(943,516,o), -(931,521,o), -(923,526,c), +(923,526,l), (920,436,o), (916,423,o), (886,423,cs), @@ -78,13 +83,9 @@ nodes = ( { closed = 1; nodes = ( -(397,367,l), -(410,376,o), -(432,384,o), -(633,444,c), -(632,450,o), -(630,460,o), -(630,469,c), +(393,372,l), +(633,444,l), +(630,469,l), (417,412,l), (397,394,l) ); @@ -95,10 +96,10 @@ nodes = ( (95,721,l), (95,692,l), (270,692,l), -(270,247,l), -(95,247,l), -(95,218,l), -(299,218,l), +(270,207,l), +(95,207,l), +(95,178,l), +(299,178,l), (299,721,l) ); }, @@ -106,26 +107,25 @@ nodes = ( closed = 1; nodes = ( (93,721,l), -(93,113,l), -(123,113,l), +(93,178,l), +(123,178,l), (123,721,l) ); }, { closed = 1; nodes = ( -(397,381,o), -(440,412,o), -(440,412,c), +(408,382,ls), +(430,397,o), +(440,429,o), +(440,455,cs), (440,824,l), (411,824,l), (411,458,ls), (411,419,o), (390,402,o), (379,395,c), -(385,388,o), -(394,375,o), -(397,367,c) +(393,372,l) ); } ); @@ -133,6 +133,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 198.236; +pos = (644,418); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -176,9 +182,7 @@ nodes = ( (939,359,o), (972,395,o), (985,516,c), -(950,524,o), -(898,544,o), -(873,564,c), +(873,564,l), (870,489,o), (865,475,o), (848,475,cs), @@ -209,13 +213,9 @@ nodes = ( { closed = 1; nodes = ( -(412,331,l), -(433,347,o), -(471,361,o), -(644,418,c), -(639,449,o), -(637,506,o), -(640,543,c), +(407,340,l), +(644,418,l), +(640,543,l), (443,485,l), (396,445,l) ); @@ -226,10 +226,10 @@ nodes = ( (126,773,l), (126,640,l), (226,640,l), -(226,313,l), -(126,313,l), -(126,181,l), -(354,181,l), +(226,263,l), +(126,263,l), +(126,131,l), +(354,131,l), (354,773,l) ); }, @@ -237,26 +237,25 @@ nodes = ( closed = 1; nodes = ( (55,773,l), -(55,102,l), -(184,102,l), +(55,131,l), +(184,131,l), (184,773,l) ); }, { closed = 1; nodes = ( -(412,375,o), -(531,451,o), -(531,451,c), +(455,373,ls), +(500,404,o), +(531,463,o), +(531,517,cs), (531,840,l), (401,840,l), (401,530,ls), (401,482,o), (376,451,o), (354,435,c), -(374,413,o), -(403,360,o), -(412,331,c) +(407,340,l) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_5.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_5.glyph index c97e088..1254d0e 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_5.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_5.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54D5; layers = ( { @@ -42,9 +43,7 @@ nodes = ( (565,428,o), (483,306,o), (378,233,c), -(383,229,o), -(392,218,o), -(396,212,c), +(396,212,l), (507,287,o), (590,415,o), (628,535,c) @@ -58,13 +57,11 @@ nodes = ( (802,132,o), (601,12,o), (357,-44,c), -(364,-50,o), -(373,-62,o), -(377,-69,c), +(377,-69,l), (623,-9,o), (826,115,o), (907,401,c), -(888,412,l), +(890,410,l), (881,410,l) ); }, @@ -74,10 +71,10 @@ nodes = ( (102,746,l), (102,717,l), (294,717,l), -(294,199,l), -(102,199,l), -(102,170,l), -(324,170,l), +(294,159,l), +(102,159,l), +(102,130,l), +(324,130,l), (324,746,l) ); }, @@ -85,8 +82,8 @@ nodes = ( closed = 1; nodes = ( (87,746,l), -(87,84,l), -(117,84,l), +(87,130,l), +(117,130,l), (117,746,l) ); }, @@ -148,9 +145,7 @@ nodes = ( (512,429,o), (453,328,o), (371,272,c), -(400,250,o), -(445,207,o), -(468,179,c), +(468,179,l), (563,248,o), (634,368,o), (677,485,c) @@ -164,13 +159,11 @@ nodes = ( (783,156,o), (616,69,o), (348,37,c), -(374,8,o), -(414,-57,o), -(428,-93,c), +(428,-93,l), (713,-46,o), (910,81,o), (976,397,c), -(884,434,l), +(899,430,l), (859,430,l) ); }, @@ -180,10 +173,10 @@ nodes = ( (130,768,l), (130,628,l), (251,628,l), -(251,298,l), -(130,298,l), -(130,157,l), -(382,157,l), +(251,238,l), +(130,238,l), +(130,97,l), +(382,97,l), (382,768,l) ); }, @@ -191,8 +184,8 @@ nodes = ( closed = 1; nodes = ( (59,768,l), -(59,75,l), -(191,75,l), +(59,97,l), +(191,97,l), (191,768,l) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_7.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_7.glyph index 5127656..9852289 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_7.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_7.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54D7; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (102,734,l), (102,705,l), (280,705,l), -(280,199,l), -(102,199,l), -(102,170,l), -(309,170,l), +(280,159,l), +(102,159,l), +(102,130,l), +(309,130,l), (309,734,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,130,l), +(117,130,l), (117,734,l) ); }, @@ -33,9 +34,7 @@ nodes = ( (490,714,o), (425,602,o), (352,527,c), -(359,521,o), -(369,506,o), -(372,499,c), +(372,499,l), (447,581,o), (517,700,o), (558,824,c) @@ -48,9 +47,7 @@ nodes = ( (808,651,o), (658,544,o), (537,480,c), -(545,475,o), -(554,466,o), -(559,459,c), +(559,459,l), (681,524,o), (827,628,o), (912,734,c) @@ -78,9 +75,7 @@ nodes = ( (929,371,o), (936,391,o), (943,473,c), -(933,474,o), -(924,477,o), -(915,484,c), +(915,484,l), (910,409,o), (902,395,o), (868,395,cs), @@ -122,10 +117,10 @@ nodes = ( (134,757,l), (134,621,l), (240,621,l), -(240,272,l), -(134,272,l), -(134,137,l), -(364,137,l), +(240,212,l), +(134,212,l), +(134,77,l), +(364,77,l), (364,757,l) ); }, @@ -133,8 +128,8 @@ nodes = ( closed = 1; nodes = ( (59,757,l), -(59,64,l), -(185,64,l), +(59,77,l), +(185,77,l), (185,757,l) ); }, @@ -145,9 +140,7 @@ nodes = ( (471,738,o), (410,624,o), (338,551,c), -(361,520,o), -(399,449,o), -(411,419,c), +(411,419,l), (506,515,o), (585,670,o), (632,821,c) @@ -160,9 +153,7 @@ nodes = ( (788,692,o), (657,591,o), (557,536,c), -(587,512,o), -(625,467,o), -(642,442,c), +(642,442,l), (745,498,o), (874,596,o), (967,708,c) @@ -190,9 +181,7 @@ nodes = ( (948,319,o), (967,367,o), (978,509,c), -(945,517,o), -(898,537,o), -(865,561,c), +(865,561,l), (863,454,o), (858,426,o), (839,426,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_9.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_9.glyph index d314599..bb981a1 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_9.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_9.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni54D9; layers = ( { +guides = ( +{ +angle = 186.325; +pos = (846,16); +} +); layerId = m01; shapes = ( { @@ -10,10 +17,10 @@ nodes = ( (93,727,l), (93,698,l), (282,698,l), -(282,229,l), -(93,229,l), -(93,199,l), -(312,199,l), +(282,189,l), +(93,189,l), +(93,159,l), +(312,159,l), (312,727,l) ); }, @@ -21,8 +28,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); }, @@ -60,10 +67,8 @@ nodes = ( { closed = 1; nodes = ( -(376,-44,l), -(396,-35,o), -(431,-30,o), -(846,16,c), +(372,-37,l), +(846,16,l), (844,22,o), (841,33,o), (839,41,c), @@ -74,7 +79,7 @@ nodes = ( { closed = 1; nodes = ( -(376,-31,o), +(372,-24,o), (428,-18,o), (428,-18,c), (476,46,o), @@ -87,9 +92,7 @@ nodes = ( (399,-2,o), (378,-7,o), (360,-12,c), -(365,-18,o), -(374,-35,o), -(376,-44,c) +(372,-37,l) ); }, { @@ -99,9 +102,7 @@ nodes = ( (685,671,o), (815,549,o), (919,476,c), -(924,483,o), -(934,492,o), -(942,497,c), +(942,497,l), (837,564,o), (706,687,o), (645,794,c) @@ -114,9 +115,7 @@ nodes = ( (576,686,o), (470,562,o), (349,482,c), -(356,477,o), -(368,466,o), -(372,460,c), +(372,460,l), (491,545,o), (600,671,o), (665,823,c) @@ -127,6 +126,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 185.94; +pos = (859,-21); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -135,10 +140,10 @@ nodes = ( (137,773,l), (137,640,l), (234,640,l), -(234,298,l), -(137,298,l), -(137,165,l), -(367,165,l), +(234,238,l), +(137,238,l), +(137,105,l), +(367,105,l), (367,773,l) ); }, @@ -146,8 +151,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(190,80,l), +(59,105,l), +(190,105,l), (190,773,l) ); }, @@ -185,10 +190,8 @@ nodes = ( { closed = 1; nodes = ( -(421,-81,l), -(459,-64,o), -(513,-57,o), -(859,-21,c), +(417,-67,l), +(859,-21,l), (849,8,o), (835,58,o), (828,94,c), @@ -199,7 +202,7 @@ nodes = ( { closed = 1; nodes = ( -(421,-46,o), +(417,-32,o), (561,3,o), (561,3,c), (604,68,o), @@ -212,9 +215,7 @@ nodes = ( (433,64,o), (404,56,o), (381,51,c), -(393,21,o), -(414,-47,o), -(421,-81,c) +(417,-67,l) ); }, { @@ -224,9 +225,7 @@ nodes = ( (690,638,o), (811,500,o), (921,414,c), -(933,454,o), -(961,522,o), -(985,558,c), +(985,558,l), (889,617,o), (777,730,o), (718,813,c) @@ -239,9 +238,7 @@ nodes = ( (574,735,o), (466,619,o), (353,549,c), -(375,514,o), -(408,435,o), -(417,401,c), +(417,401,l), (557,497,o), (687,655,o), (764,817,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_A_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_A_.glyph index df9ac7c..8e26ce1 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_A_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_A_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54DA; layers = ( { @@ -29,9 +30,7 @@ nodes = ( (549,208,o), (424,84,o), (319,31,c), -(326,25,o), -(335,15,o), -(340,7,c), +(340,7,l), (444,67,o), (571,192,o), (637,312,c) @@ -44,9 +43,7 @@ nodes = ( (702,200,o), (822,77,o), (928,20,c), -(933,28,o), -(942,37,o), -(950,43,c), +(950,43,l), (843,94,o), (723,214,o), (663,327,c) @@ -69,9 +66,7 @@ nodes = ( (508,613,o), (486,527,o), (384,463,c), -(390,458,o), -(400,447,o), -(404,440,c), +(404,440,l), (513,510,o), (537,606,o), (537,683,cs), @@ -89,15 +84,9 @@ nodes = ( (784,495,o), (858,495,o), (873,495,cs), -(892,495,o), -(911,495,o), -(919,498,c), -(918,505,o), -(917,518,o), -(916,525,c), -(905,523,o), -(884,523,o), -(872,523,cs), +(919,495,l), +(919,523,l), +(872,523,ls), (858,523,o), (788,523,o), (773,523,cs), @@ -113,10 +102,10 @@ nodes = ( (100,726,l), (100,697,l), (278,697,l), -(278,228,l), -(100,228,l), -(100,198,l), -(307,198,l), +(278,188,l), +(100,188,l), +(100,158,l), +(307,158,l), (307,726,l) ); }, @@ -124,8 +113,8 @@ nodes = ( closed = 1; nodes = ( (85,726,l), -(85,95,l), -(115,95,l), +(85,158,l), +(115,158,l), (115,726,l) ); } @@ -161,9 +150,7 @@ nodes = ( (512,213,o), (415,115,o), (299,66,c), -(330,38,o), -(374,-16,o), -(395,-51,c), +(395,-51,l), (518,18,o), (612,142,o), (670,285,c) @@ -176,9 +163,7 @@ nodes = ( (704,157,o), (799,31,o), (888,-41,c), -(911,-5,o), -(956,45,o), -(988,71,c), +(988,71,l), (896,125,o), (794,221,o), (739,310,c) @@ -201,9 +186,7 @@ nodes = ( (468,667,o), (458,584,o), (359,521,c), -(385,501,o), -(439,439,o), -(456,409,c), +(456,409,l), (581,492,o), (609,627,o), (609,734,cs), @@ -221,15 +204,9 @@ nodes = ( (852,442,o), (869,442,o), (884,442,cs), -(904,442,o), -(929,443,o), -(944,450,c), -(939,482,o), -(937,522,o), -(935,557,c), -(921,552,o), -(896,550,o), -(882,550,cs), +(936,442,l), +(936,550,l), +(882,550,ls), (873,550,o), (866,550,o), (858,550,cs), @@ -245,10 +222,10 @@ nodes = ( (136,773,l), (136,641,l), (224,641,l), -(224,299,l), -(136,299,l), -(136,167,l), -(351,167,l), +(224,269,l), +(136,269,l), +(136,137,l), +(351,137,l), (351,773,l) ); }, @@ -256,8 +233,8 @@ nodes = ( closed = 1; nodes = ( (57,773,l), -(57,80,l), -(178,80,l), +(57,137,l), +(178,137,l), (178,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_C_.glyph index 7bd5286..e0a4f46 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_C_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54DC; layers = ( { @@ -33,9 +34,7 @@ nodes = ( (738,496,o), (572,405,o), (336,362,c), -(344,355,o), -(354,342,o), -(358,335,c), +(358,335,l), (592,387,o), (768,479,o), (821,692,c) @@ -58,9 +57,7 @@ nodes = ( (510,142,o), (481,37,o), (326,-37,c), -(333,-42,o), -(344,-50,o), -(350,-57,c), +(350,-57,l), (508,22,o), (539,131,o), (539,227,cs), @@ -74,9 +71,7 @@ nodes = ( (540,488,o), (699,379,o), (930,336,c), -(934,345,o), -(943,357,o), -(950,364,c), +(950,364,l), (720,401,o), (565,507,o), (502,693,c) @@ -88,10 +83,10 @@ nodes = ( (97,727,l), (97,698,l), (278,698,l), -(278,229,l), -(97,229,l), -(97,199,l), -(307,199,l), +(278,189,l), +(97,189,l), +(97,159,l), +(307,159,l), (307,727,l) ); }, @@ -99,8 +94,8 @@ nodes = ( closed = 1; nodes = ( (86,727,l), -(86,96,l), -(116,96,l), +(86,159,l), +(116,159,l), (116,727,l) ); } @@ -140,9 +135,7 @@ nodes = ( (721,527,o), (569,454,o), (351,423,c), -(371,393,o), -(400,332,o), -(409,299,c), +(409,299,l), (664,351,o), (832,451,o), (911,669,c) @@ -165,9 +158,7 @@ nodes = ( (477,154,o), (459,49,o), (323,-11,c), -(354,-30,o), -(405,-70,o), -(428,-94,c), +(428,-94,l), (588,-19,o), (613,123,o), (613,213,cs), @@ -181,9 +172,7 @@ nodes = ( (521,443,o), (645,337,o), (914,299,c), -(930,337,o), -(965,393,o), -(993,422,c), +(993,422,l), (751,443,o), (623,522,o), (566,679,c) @@ -195,10 +184,10 @@ nodes = ( (136,773,l), (136,640,l), (230,640,l), -(230,298,l), -(136,298,l), -(136,165,l), -(350,165,l), +(230,238,l), +(136,238,l), +(136,105,l), +(350,105,l), (350,773,l) ); }, @@ -206,8 +195,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(186,80,l), +(59,105,l), +(186,105,l), (186,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_D_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_D_.glyph index 77f37b7..3a64fcc 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_D_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_D_.glyph @@ -1,24 +1,30 @@ { +color = 4; glyphname = uni54DD; layers = ( { +guides = ( +{ +angle = 199.4115; +pos = (721,28); +} +); layerId = m01; shapes = ( { closed = 1; nodes = ( -(472,-54,o), -(521,-32,o), -(521,-32,c), +(483,-53,ls), +(504,-41,o), +(521,-14,o), +(521,11,cs), (521,366,l), (491,366,l), (491,14,ls), (491,-21,o), (469,-32,o), (456,-36,c), -(462,-45,o), -(469,-59,o), -(472,-67,c) +(469,-61,l) ); }, { @@ -28,9 +34,7 @@ nodes = ( (618,535,o), (514,335,o), (311,214,c), -(319,209,o), -(330,199,o), -(335,193,c), +(335,193,l), (535,323,o), (643,520,o), (699,814,c) @@ -56,9 +60,7 @@ nodes = ( (670,318,o), (770,70,o), (934,-50,c), -(940,-41,o), -(950,-31,o), -(958,-25,c), +(958,-25,l), (794,82,o), (695,330,o), (647,613,c) @@ -80,13 +82,9 @@ nodes = ( { closed = 1; nodes = ( -(472,-67,l), -(486,-56,o), -(511,-46,o), -(721,28,c), -(720,33,o), -(718,47,o), -(717,56,c), +(469,-61,l), +(721,28,l), +(717,56,l), (493,-18,l), (471,-38,l) ); @@ -97,10 +95,10 @@ nodes = ( (96,734,l), (96,705,l), (262,705,l), -(262,199,l), -(96,199,l), -(96,170,l), -(291,170,l), +(262,159,l), +(96,159,l), +(96,130,l), +(291,130,l), (291,734,l) ); }, @@ -108,8 +106,8 @@ nodes = ( closed = 1; nodes = ( (82,734,l), -(82,94,l), -(111,94,l), +(82,130,l), +(111,130,l), (111,734,l) ); } @@ -118,23 +116,28 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 199.6538; +pos = (726,11); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { closed = 1; nodes = ( -(466,-57,o), -(588,7,o), -(588,7,c), +(511,-53,ls), +(560,-23,o), +(588,44,o), +(588,101,cs), (588,388,l), (466,388,l), (466,102,ls), (466,59,o), (435,31,o), (411,19,c), -(432,-9,o), -(458,-66,o), -(466,-98,c) +(460,-84,l) ); }, { @@ -144,9 +147,7 @@ nodes = ( (564,578,o), (482,379,o), (308,269,c), -(339,247,o), -(393,196,o), -(413,171,c), +(413,171,l), (593,304,o), (687,526,o), (732,822,c) @@ -172,9 +173,7 @@ nodes = ( (653,309,o), (721,73,o), (888,-62,c), -(908,-27,o), -(950,23,o), -(981,48,c), +(981,48,l), (832,155,o), (763,375,o), (732,619,c) @@ -196,13 +195,9 @@ nodes = ( { closed = 1; nodes = ( -(466,-98,l), -(490,-79,o), -(530,-59,o), -(726,11,c), -(718,41,o), -(709,96,o), -(706,134,c), +(460,-84,l), +(726,11,l), +(706,134,l), (495,67,l), (448,25,l) ); @@ -213,10 +208,10 @@ nodes = ( (111,771,l), (111,641,l), (220,641,l), -(220,289,l), -(111,289,l), -(111,159,l), -(333,159,l), +(220,229,l), +(111,229,l), +(111,99,l), +(333,99,l), (333,771,l) ); }, @@ -224,8 +219,8 @@ nodes = ( closed = 1; nodes = ( (60,771,l), -(60,78,l), -(170,78,l), +(60,99,l), +(170,99,l), (170,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_E_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_E_.glyph index 720adaa..4e5c30d 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_E_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_E_.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni54DE; layers = ( { +guides = ( +{ +angle = 184.0042; +pos = (863,600); +} +); layerId = m01; shapes = ( { @@ -20,9 +27,7 @@ nodes = ( (444,427,o), (403,325,o), (354,254,c), -(363,251,o), -(377,244,o), -(382,240,c), +(382,240,l), (428,311,o), (472,417,o), (502,519,c) @@ -62,9 +67,7 @@ nodes = ( { closed = 1; nodes = ( -(408,572,o), -(436,582,o), -(436,582,c), +(436,582,l), (436,583,l), (505,643,o), (574,730,o), @@ -76,18 +79,14 @@ nodes = ( (430,614,o), (413,597,o), (397,595,c), -(401,586,o), -(406,570,o), -(408,562,c) +(406,568,l) ); }, { closed = 1; nodes = ( -(408,562,l), -(427,570,o), -(463,572,o), -(863,600,c), +(406,568,l), +(863,600,l), (860,607,o), (859,619,o), (858,627,c), @@ -101,10 +100,10 @@ nodes = ( (95,727,l), (95,698,l), (273,698,l), -(273,229,l), -(95,229,l), -(95,199,l), -(302,199,l), +(273,189,l), +(95,189,l), +(95,159,l), +(302,159,l), (302,727,l) ); }, @@ -112,8 +111,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -122,6 +121,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 184.1208; +pos = (871,556); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -140,9 +145,7 @@ nodes = ( (428,421,o), (395,326,o), (353,267,c), -(387,253,o), -(448,221,o), -(476,201,c), +(476,201,l), (518,268,o), (559,378,o), (581,481,c) @@ -182,9 +185,7 @@ nodes = ( { closed = 1; nodes = ( -(432,538,o), -(509,580,o), -(509,580,c), +(509,580,l), (509,582,l), (578,638,o), (662,732,o), @@ -196,18 +197,14 @@ nodes = ( (426,664,o), (407,650,o), (387,645,c), -(402,608,o), -(425,542,o), -(432,514,c) +(429,524,l) ); }, { closed = 1; nodes = ( -(432,514,l), -(470,528,o), -(524,531,o), -(871,556,c), +(429,524,l), +(871,556,l), (863,584,o), (851,635,o), (846,670,c), @@ -221,10 +218,10 @@ nodes = ( (127,773,l), (127,640,l), (227,640,l), -(227,298,l), -(127,298,l), -(127,165,l), -(352,165,l), +(227,238,l), +(127,238,l), +(127,105,l), +(352,105,l), (352,773,l) ); }, @@ -232,8 +229,8 @@ nodes = ( closed = 1; nodes = ( (53,773,l), -(53,80,l), -(174,80,l), +(53,105,l), +(174,105,l), (174,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_F_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_F_.glyph index a6c3dae..cb90ead 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_F_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54D_F_.glyph @@ -1,7 +1,18 @@ { +color = 4; glyphname = uni54DF; layers = ( { +guides = ( +{ +angle = 187.3155; +pos = (515,464); +}, +{ +angle = 189.4217; +pos = (607,250); +} +); layerId = m01; shapes = ( { @@ -10,10 +21,10 @@ nodes = ( (106,751,l), (106,721,l), (245,721,l), -(245,225,l), -(106,225,l), -(106,195,l), -(275,195,l), +(245,185,l), +(106,185,l), +(106,155,l), +(275,155,l), (275,751,l) ); }, @@ -21,15 +32,15 @@ nodes = ( closed = 1; nodes = ( (90,751,l), -(90,84,l), -(120,84,l), +(90,155,l), +(120,155,l), (120,751,l) ); }, { closed = 1; nodes = ( -(338,208,o), +(335,215,o), (367,220,o), (367,220,c), (367,220,l), @@ -43,21 +54,15 @@ nodes = ( (362,259,o), (343,234,o), (328,231,c), -(331,223,o), -(336,206,o), -(338,198,c) +(335,205,l) ); }, { closed = 1; nodes = ( -(338,198,l), -(353,206,o), -(378,212,o), -(607,250,c), -(606,256,o), -(606,269,o), -(606,277,c), +(335,205,l), +(607,250,l), +(606,277,l), (362,240,l), (338,226,l) ); @@ -65,7 +70,7 @@ nodes = ( { closed = 1; nodes = ( -(332,445,o), +(330,451,o), (361,457,o), (361,457,c), (361,458,l), @@ -79,18 +84,14 @@ nodes = ( (352,497,o), (335,472,o), (322,469,c), -(326,460,o), -(330,443,o), -(332,435,c) +(330,441,l) ); }, { closed = 1; nodes = ( -(332,435,l), -(344,441,o), -(367,445,o), -(515,464,c), +(330,441,l), +(515,464,l), (514,470,o), (514,482,o), (515,491,c), @@ -124,9 +125,8 @@ nodes = ( closed = 1; nodes = ( (901,638,l), -(901,629,ls), -(887,169,o), -(870,10,o), +(892,336,o), +(880,23,o), (843,-24,c), (834,-38,o), (826,-40,o), @@ -134,20 +134,15 @@ nodes = ( (795,-39,o), (757,-39,o), (713,-35,c), -(719,-44,o), -(721,-57,o), -(721,-65,c), +(721,-65,l), (757,-68,o), (793,-69,o), (815,-68,cs), (839,-67,o), (855,-62,o), (868,-43,cs), -(902,0,o), -(915,141,o), -(930,616,cs), -(930,621,o), -(930,638,o), +(913,14,o), +(920,315,o), (930,638,c) ); }, @@ -158,9 +153,7 @@ nodes = ( (682,686,o), (648,557,o), (598,469,c), -(607,465,o), -(620,458,o), -(625,454,c), +(625,454,l), (672,543,o), (709,675,o), (733,809,c) @@ -184,6 +177,16 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 185.1173; +pos = (531,449); +}, +{ +angle = 189.2263; +pos = (614,221); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -192,10 +195,10 @@ nodes = ( (138,791,l), (138,678,l), (187,678,l), -(187,249,l), -(138,249,l), -(138,135,l), -(300,135,l), +(187,229,l), +(138,229,l), +(138,115,l), +(300,115,l), (300,791,l) ); }, @@ -203,15 +206,15 @@ nodes = ( closed = 1; nodes = ( (46,791,l), -(46,57,l), -(157,57,l), +(46,115,l), +(157,115,l), (157,791,l) ); }, { closed = 1; nodes = ( -(352,186,o), +(348,200,o), (426,225,o), (426,225,c), (426,228,l), @@ -225,21 +228,15 @@ nodes = ( (352,305,o), (334,285,o), (312,278,c), -(326,247,o), -(346,188,o), -(352,164,c) +(348,178,l) ); }, { closed = 1; nodes = ( -(352,164,l), -(377,178,o), -(417,189,o), -(614,221,c), -(610,250,o), -(607,302,o), -(608,339,c), +(348,178,l), +(614,221,l), +(608,339,l), (400,311,l), (344,272,l) ); @@ -247,7 +244,7 @@ nodes = ( { closed = 1; nodes = ( -(343,442,o), +(339,455,o), (416,483,o), (416,483,c), (416,485,l), @@ -261,18 +258,14 @@ nodes = ( (335,561,o), (320,541,o), (302,535,c), -(316,503,o), -(336,444,o), -(343,419,c) +(339,432,l) ); }, { closed = 1; nodes = ( -(343,419,l), -(363,429,o), -(397,437,o), -(531,449,c), +(339,432,l), +(531,449,l), (532,477,o), (539,526,o), (546,560,c), @@ -306,9 +299,8 @@ nodes = ( closed = 1; nodes = ( (827,680,l), -(827,649,ls), -(819,238,o), -(809,92,o), +(822,401,o), +(818,105,o), (788,61,cs), (778,46,o), (770,41,o), @@ -316,20 +308,15 @@ nodes = ( (737,41,o), (710,41,o), (678,45,c), -(698,8,o), -(713,-49,o), -(715,-86,c), +(715,-86,l), (759,-87,o), (799,-87,o), (829,-80,cs), (862,-73,o), (885,-60,o), (908,-23,cs), -(940,25,o), -(950,182,o), -(960,618,cs), -(961,635,o), -(961,680,o), +(950,39,o), +(953,337,o), (961,680,c) ); }, @@ -340,9 +327,7 @@ nodes = ( (642,726,o), (611,591,o), (564,508,c), -(594,493,o), -(648,459,o), -(672,439,c), +(672,439,l), (722,535,o), (761,686,o), (782,833,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_5.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_5.glyph index 0b12a2b..dc53d29 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_5.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_5.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54E5; layers = ( { @@ -33,9 +34,7 @@ nodes = ( (734,-44,o), (684,-44,o), (618,-43,c), -(623,-52,o), -(628,-63,o), -(630,-71,c), +(630,-71,l), (707,-71,o), (750,-71,o), (771,-65,cs), @@ -48,23 +47,23 @@ nodes = ( { closed = 1; nodes = ( -(220,256,l), -(220,227,l), -(574,227,l), -(574,85,l), -(220,85,l), -(220,56,l), -(603,56,l), -(603,256,l) +(220,266,l), +(220,237,l), +(574,237,l), +(574,75,l), +(220,75,l), +(220,46,l), +(603,46,l), +(603,266,l) ); }, { closed = 1; nodes = ( -(204,256,l), -(204,4,l), -(233,4,l), -(233,256,l) +(204,266,l), +(204,46,l), +(233,46,l), +(233,266,l) ); }, { @@ -130,9 +129,7 @@ nodes = ( (681,41,o), (617,41,o), (574,43,c), -(593,6,o), -(616,-52,o), -(623,-93,c), +(623,-93,l), (699,-93,o), (760,-92,o), (809,-72,cs), @@ -159,8 +156,8 @@ nodes = ( closed = 1; nodes = ( (138,252,l), -(138,-27,l), -(282,-27,l), +(138,1,l), +(282,1,l), (282,252,l) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_6.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_6.glyph index 25448f5..b92ca21 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_6.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_6.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54E6; layers = ( { @@ -48,9 +49,7 @@ nodes = ( (553,771,o), (425,732,o), (315,706,c), -(320,699,o), -(325,689,o), -(327,682,c), +(327,682,l), (439,709,o), (570,747,o), (645,793,c) @@ -67,9 +66,7 @@ nodes = ( (437,-40,o), (385,-40,o), (325,-39,c), -(329,-49,o), -(335,-63,o), -(337,-70,c), +(337,-70,l), (407,-70,o), (450,-70,o), (472,-65,cs), @@ -89,9 +86,7 @@ nodes = ( (936,-72,o), (949,-23,o), (956,119,c), -(948,121,o), -(935,127,o), -(928,132,c), +(928,132,l), (923,6,o), (913,-41,o), (886,-42,cs), @@ -119,10 +114,10 @@ nodes = ( (93,751,l), (93,721,l), (265,721,l), -(265,225,l), -(93,225,l), -(93,195,l), -(294,195,l), +(265,185,l), +(93,185,l), +(93,155,l), +(294,155,l), (294,751,l) ); }, @@ -130,8 +125,8 @@ nodes = ( closed = 1; nodes = ( (83,751,l), -(83,84,l), -(112,84,l), +(83,155,l), +(112,155,l), (112,751,l) ); } @@ -186,9 +181,7 @@ nodes = ( (531,807,o), (432,770,o), (340,747,c), -(355,720,o), -(373,674,o), -(378,646,c), +(378,646,l), (479,667,o), (597,699,o), (693,739,c) @@ -205,9 +198,7 @@ nodes = ( (415,38,o), (370,38,o), (329,40,c), -(348,3,o), -(367,-58,o), -(371,-96,c), +(371,-96,l), (440,-96,o), (492,-91,o), (529,-69,cs), @@ -227,9 +218,7 @@ nodes = ( (936,-96,o), (968,-59,o), (986,74,c), -(957,89,o), -(919,119,o), -(895,151,c), +(895,151,l), (894,72,o), (886,37,o), (876,37,cs), @@ -257,10 +246,10 @@ nodes = ( (136,791,l), (136,678,l), (208,678,l), -(208,249,l), -(136,249,l), -(136,135,l), -(323,135,l), +(208,209,l), +(136,209,l), +(136,95,l), +(323,95,l), (323,791,l) ); }, @@ -268,8 +257,8 @@ nodes = ( closed = 1; nodes = ( (55,791,l), -(55,57,l), -(173,57,l), +(55,95,l), +(173,95,l), (173,791,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_7.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_7.glyph index 69d218e..2e370fa 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_7.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_7.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54E7; layers = ( { @@ -38,9 +39,7 @@ nodes = ( (540,193,o), (520,35,o), (351,-49,c), -(358,-54,o), -(368,-63,o), -(373,-69,c), +(373,-69,l), (546,21,o), (570,182,o), (575,472,c) @@ -66,9 +65,7 @@ nodes = ( (403,260,o), (376,164,o), (326,97,c), -(333,93,o), -(347,86,o), -(353,82,c), +(353,82,l), (400,151,o), (430,250,o), (448,361,c) @@ -85,9 +82,7 @@ nodes = ( (678,-44,o), (638,-44,o), (588,-43,c), -(593,-51,o), -(599,-63,o), -(601,-70,c), +(601,-70,l), (662,-70,o), (695,-70,o), (713,-65,cs), @@ -103,10 +98,10 @@ nodes = ( (100,688,l), (100,659,l), (272,659,l), -(272,214,l), -(100,214,l), -(100,184,l), -(301,184,l), +(272,174,l), +(100,174,l), +(100,144,l), +(301,144,l), (301,688,l) ); }, @@ -114,8 +109,8 @@ nodes = ( closed = 1; nodes = ( (84,688,l), -(84,97,l), -(114,97,l), +(84,144,l), +(114,144,l), (114,688,l) ); } @@ -160,9 +155,7 @@ nodes = ( (513,232,o), (508,94,o), (363,9,c), -(393,-16,o), -(431,-66,o), -(447,-100,c), +(447,-100,l), (622,8,o), (639,190,o), (644,454,c) @@ -188,9 +181,7 @@ nodes = ( (379,272,o), (353,188,o), (307,133,c), -(331,116,o), -(375,76,o), -(393,56,c), +(393,56,l), (448,123,o), (486,229,o), (505,340,c) @@ -207,9 +198,7 @@ nodes = ( (644,30,o), (609,30,o), (577,31,c), -(592,-6,o), -(607,-60,o), -(611,-96,c), +(611,-96,l), (671,-96,o), (717,-93,o), (752,-73,cs), @@ -225,10 +214,10 @@ nodes = ( (142,722,l), (142,593,l), (218,593,l), -(218,291,l), -(142,291,l), -(142,162,l), -(336,162,l), +(218,281,l), +(142,281,l), +(142,152,l), +(336,152,l), (336,722,l) ); }, @@ -236,8 +225,8 @@ nodes = ( closed = 1; nodes = ( (60,722,l), -(60,78,l), -(176,78,l), +(60,152,l), +(176,152,l), (176,722,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_8.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_8.glyph index 43aa3a4..081e341 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_8.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_8.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54E8; layers = ( { @@ -61,9 +62,7 @@ nodes = ( (826,-44,o), (770,-44,o), (699,-42,c), -(704,-52,o), -(710,-65,o), -(712,-73,c), +(712,-73,l), (792,-73,o), (840,-73,o), (864,-67,cs), @@ -97,10 +96,10 @@ nodes = ( (100,721,l), (100,692,l), (316,692,l), -(316,229,l), -(100,229,l), -(100,199,l), -(345,199,l), +(316,209,l), +(100,209,l), +(100,179,l), +(345,179,l), (345,721,l) ); }, @@ -108,8 +107,8 @@ nodes = ( closed = 1; nodes = ( (83,721,l), -(83,113,l), -(112,113,l), +(83,179,l), +(112,179,l), (112,721,l) ); } @@ -177,9 +176,7 @@ nodes = ( (755,35,o), (712,35,o), (679,37,c), -(697,2,o), -(717,-57,o), -(722,-95,c), +(722,-95,l), (788,-95,o), (837,-92,o), (876,-71,cs), @@ -213,10 +210,10 @@ nodes = ( (144,758,l), (144,624,l), (244,624,l), -(244,297,l), -(144,297,l), -(144,163,l), -(381,163,l), +(244,257,l), +(144,257,l), +(144,123,l), +(381,123,l), (381,758,l) ); }, @@ -224,8 +221,8 @@ nodes = ( closed = 1; nodes = ( (59,758,l), -(59,87,l), -(192,87,l), +(59,123,l), +(192,123,l), (192,758,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_9.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_9.glyph index 9139c60..4426bca 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_9.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_9.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54E9; layers = ( { @@ -55,10 +56,10 @@ nodes = ( (94,727,l), (94,698,l), (269,698,l), -(269,229,l), -(94,229,l), -(94,199,l), -(298,199,l), +(269,179,l), +(94,179,l), +(94,149,l), +(298,149,l), (298,727,l) ); }, @@ -66,8 +67,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(113,96,l), +(84,149,l), +(113,149,l), (113,727,l) ); }, @@ -142,10 +143,10 @@ nodes = ( (136,773,l), (136,640,l), (233,640,l), -(233,298,l), -(136,298,l), -(136,165,l), -(364,165,l), +(233,248,l), +(136,248,l), +(136,115,l), +(364,115,l), (364,773,l) ); }, @@ -153,8 +154,8 @@ nodes = ( closed = 1; nodes = ( (58,773,l), -(58,80,l), -(189,80,l), +(58,115,l), +(189,115,l), (189,773,l) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_A_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_A_.glyph index ac684e1..167e1cf 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_A_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_A_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54EA; layers = ( { @@ -35,9 +36,8 @@ nodes = ( closed = 1; nodes = ( (578,777,l), -(578,768,ls), -(577,196,o), -(574,10,o), +(577,410,o), +(579,19,o), (555,-23,cs), (547,-38,o), (540,-40,o), @@ -45,20 +45,15 @@ nodes = ( (510,-40,o), (470,-40,o), (425,-37,c), -(430,-45,o), -(432,-58,o), -(433,-67,c), +(433,-67,l), (470,-70,o), (505,-70,o), (529,-69,cs), (553,-68,o), (570,-63,o), (582,-41,cs), -(607,0,o), -(607,169,o), -(608,753,cs), -(608,759,o), -(608,777,o), +(613,9,o), +(607,383,o), (608,777,c) ); }, @@ -70,9 +65,7 @@ nodes = ( (432,339,o), (417,114,o), (275,-51,c), -(282,-55,o), -(293,-65,o), -(297,-72,c), +(297,-72,l), (443,98,o), (462,335,o), (462,509,cs), @@ -95,9 +88,7 @@ closed = 1; nodes = ( (907,777,l), (907,770,l), -(878,685,o), -(835,568,o), -(790,460,c), +(790,460,l), (880,359,o), (903,277,o), (903,206,cs), @@ -110,9 +101,7 @@ nodes = ( (824,101,o), (800,101,o), (773,104,c), -(780,95,o), -(784,82,o), -(785,75,c), +(785,75,l), (806,73,o), (831,73,o), (851,75,cs), @@ -125,10 +114,8 @@ nodes = ( (931,280,o), (910,365,o), (822,464,c), -(863,562,o), -(905,675,o), -(937,767,c), -(917,779,l), +(937,767,l), +(920,777,l), (913,777,l) ); }, @@ -138,10 +125,10 @@ nodes = ( (94,727,l), (94,698,l), (242,698,l), -(242,229,l), -(94,229,l), -(94,199,l), -(272,199,l), +(242,189,l), +(94,189,l), +(94,159,l), +(272,159,l), (272,727,l) ); }, @@ -149,8 +136,8 @@ nodes = ( closed = 1; nodes = ( (83,727,l), -(83,96,l), -(112,96,l), +(83,159,l), +(112,159,l), (112,727,l) ); } @@ -192,9 +179,8 @@ nodes = ( closed = 1; nodes = ( (529,813,l), -(529,779,ls), -(526,255,o), -(523,88,o), +(527,463,o), +(528,98,o), (507,54,cs), (499,36,o), (492,31,o), @@ -202,20 +188,15 @@ nodes = ( (465,32,o), (447,32,o), (426,34,c), -(444,-2,o), -(456,-56,o), -(458,-92,c), +(458,-92,l), (493,-93,o), (522,-93,o), (548,-85,cs), (576,-78,o), (593,-66,o), (613,-29,cs), -(639,18,o), -(639,210,o), -(643,753,cs), -(644,768,o), -(644,813,o), +(643,26,o), +(640,361,o), (644,813,c) ); }, @@ -227,9 +208,7 @@ nodes = ( (377,324,o), (367,125,o), (249,-11,c), -(271,-27,o), -(316,-74,o), -(332,-98,c), +(332,-98,l), (468,53,o), (492,305,o), (492,471,cs), @@ -252,9 +231,7 @@ closed = 1; nodes = ( (844,813,l), (844,768,l), -(838,706,o), -(816,527,o), -(798,431,c), +(798,431,l), (833,357,o), (835,288,o), (835,237,cs), @@ -267,9 +244,7 @@ nodes = ( (800,164,o), (794,164,o), (786,164,c), -(803,129,o), -(809,78,o), -(809,44,c), +(809,44,l), (829,44,o), (844,45,o), (857,47,cs), @@ -282,10 +257,8 @@ nodes = ( (952,281,o), (946,357,o), (905,442,c), -(925,524,o), -(952,665,o), -(971,767,c), -(883,817,l), +(971,767,l), +(890,813,l), (866,813,l) ); }, @@ -295,10 +268,10 @@ nodes = ( (119,771,l), (119,639,l), (198,639,l), -(198,297,l), -(119,297,l), -(119,165,l), -(306,165,l), +(198,257,l), +(119,257,l), +(119,125,l), +(306,125,l), (306,771,l) ); }, @@ -306,8 +279,8 @@ nodes = ( closed = 1; nodes = ( (59,771,l), -(59,73,l), -(164,73,l), +(59,125,l), +(164,125,l), (164,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_D_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_D_.glyph index 95b8a99..330b4b7 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_D_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_D_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54ED; layers = ( { @@ -56,9 +57,7 @@ nodes = ( (468,236,o), (409,34,o), (46,-46,c), -(52,-52,o), -(60,-65,o), -(63,-71,c), +(63,-71,l), (430,13,o), (495,221,o), (523,492,c) @@ -71,9 +70,7 @@ nodes = ( (560,104,o), (711,-16,o), (939,-66,c), -(943,-58,o), -(952,-46,o), -(959,-39,c), +(959,-39,l), (732,4,o), (584,122,o), (524,319,c) @@ -151,9 +148,7 @@ nodes = ( (393,253,o), (384,108,o), (20,35,c), -(51,1,o), -(88,-59,o), -(102,-100,c), +(102,-100,l), (510,-3,o), (547,197,o), (564,475,c) @@ -166,9 +161,7 @@ nodes = ( (528,82,o), (640,-42,o), (897,-90,c), -(917,-46,o), -(959,21,o), -(992,54,c), +(992,54,l), (759,81,o), (642,171,o), (586,332,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_E_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_E_.glyph index ff7f155..88859fe 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_E_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54E_E_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54EE; layers = ( { @@ -56,9 +57,7 @@ nodes = ( (759,524,o), (539,308,o), (274,174,c), -(281,168,o), -(294,156,o), -(299,150,c), +(299,150,l), (560,291,o), (778,504,o), (927,778,c) @@ -78,7 +77,7 @@ nodes = ( (722,274,o), (806,324,o), (858,378,c), -(836,392,l), +(839,390,l), (830,390,l) ); }, @@ -93,9 +92,7 @@ nodes = ( (602,-44,o), (558,-44,o), (496,-43,c), -(501,-52,o), -(507,-63,o), -(509,-71,c), +(509,-71,l), (577,-71,o), (618,-71,o), (637,-65,cs), @@ -122,8 +119,8 @@ nodes = ( closed = 1; nodes = ( (79,727,l), -(79,96,l), -(108,96,l), +(79,199,l), +(108,199,l), (108,727,l) ); } @@ -186,9 +183,7 @@ nodes = ( (730,564,o), (533,368,o), (277,260,c), -(305,232,o), -(353,174,o), -(371,143,c), +(371,143,l), (632,272,o), (844,491,o), (970,780,c) @@ -208,7 +203,7 @@ nodes = ( (758,233,o), (843,294,o), (907,350,c), -(826,419,l), +(833,412,l), (799,412,l) ); }, @@ -223,9 +218,7 @@ nodes = ( (580,34,o), (526,34,o), (486,36,c), -(504,0,o), -(524,-56,o), -(530,-95,c), +(530,-95,l), (599,-95,o), (654,-94,o), (698,-74,cs), @@ -252,8 +245,8 @@ nodes = ( closed = 1; nodes = ( (42,773,l), -(42,80,l), -(167,80,l), +(42,165,l), +(167,165,l), (167,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_2.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_2.glyph index 912b785..a1b52e9 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_2.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_2.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54F2; layers = ( { @@ -7,22 +8,22 @@ shapes = ( { closed = 1; nodes = ( -(220,5,l), -(220,-24,l), -(789,-24,l), -(789,5,l) +(220,-25,l), +(220,-54,l), +(789,-54,l), +(789,-25,l) ); }, { closed = 1; nodes = ( (201,272,l), -(201,-72,l), -(231,-72,l), +(201,-54,l), +(231,-54,l), (231,242,l), (777,242,l), -(777,-68,l), -(807,-68,l), +(777,-54,l), +(807,-54,l), (807,272,l) ); }, @@ -59,9 +60,7 @@ nodes = ( (225,340,o), (184,339,o), (133,341,c), -(137,332,o), -(142,320,o), -(144,312,c), +(144,312,l), (205,312,o), (240,312,o), (258,318,cs), @@ -112,9 +111,7 @@ nodes = ( (521,519,o), (510,410,o), (411,326,c), -(419,321,o), -(428,312,o), -(433,305,c), +(433,305,l), (537,395,o), (550,508,o), (550,617,cs), @@ -131,22 +128,22 @@ shapes = ( { closed = 1; nodes = ( -(235,63,l), -(235,-62,l), -(767,-62,l), -(767,63,l) +(235,43,l), +(235,-82,l), +(767,-82,l), +(767,43,l) ); }, { closed = 1; nodes = ( (156,280,l), -(156,-96,l), -(299,-96,l), +(156,-82,l), +(299,-82,l), (299,155,l), (703,155,l), -(703,-93,l), -(853,-93,l), +(703,-82,l), +(853,-82,l), (853,280,l) ); }, @@ -183,9 +180,7 @@ nodes = ( (170,411,o), (128,411,o), (98,413,c), -(113,382,o), -(130,334,o), -(135,300,c), +(135,300,l), (200,300,o), (249,302,o), (287,319,cs), @@ -236,9 +231,7 @@ nodes = ( (490,529,o), (476,442,o), (376,381,c), -(408,361,o), -(458,316,o), -(480,287,c), +(480,287,l), (599,368,o), (616,491,o), (616,611,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_3.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_3.glyph index d07d9a4..0f2557b 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_3.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_3.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54F3; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (95,727,l), (95,698,l), (249,698,l), -(249,229,l), -(95,229,l), -(95,199,l), -(279,199,l), +(249,189,l), +(95,189,l), +(95,159,l), +(279,159,l), (279,727,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); }, @@ -77,9 +78,7 @@ nodes = ( (408,-32,o), (369,-32,o), (323,-31,c), -(328,-40,o), -(332,-55,o), -(335,-63,c), +(335,-63,l), (388,-63,o), (422,-63,o), (439,-57,cs), @@ -112,9 +111,7 @@ nodes = ( (625,244,o), (617,77,o), (535,-45,c), -(542,-49,o), -(554,-58,o), -(559,-65,c), +(559,-65,l), (643,61,o), (655,241,o), (655,376,cs), @@ -134,10 +131,10 @@ nodes = ( (126,773,l), (126,640,l), (209,640,l), -(209,298,l), -(126,298,l), -(126,165,l), -(323,165,l), +(209,238,l), +(126,238,l), +(126,105,l), +(323,105,l), (323,773,l) ); }, @@ -145,8 +142,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(171,80,l), +(59,105,l), +(171,105,l), (171,773,l) ); }, @@ -201,9 +198,7 @@ nodes = ( (382,50,o), (355,50,o), (327,51,c), -(344,12,o), -(361,-50,o), -(364,-88,c), +(364,-88,l), (422,-88,o), (464,-81,o), (496,-57,cs), @@ -236,9 +231,7 @@ nodes = ( (629,257,o), (624,98,o), (554,-9,c), -(583,-24,o), -(638,-69,o), -(660,-93,c), +(660,-93,l), (744,29,o), (758,236,o), (758,383,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_A_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_A_.glyph index 20f75ba..09011f3 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_A_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_A_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54FA; layers = ( { @@ -62,9 +63,7 @@ nodes = ( (845,-39,o), (804,-39,o), (753,-38,c), -(758,-47,o), -(763,-60,o), -(765,-68,c), +(765,-68,l), (823,-68,o), (860,-68,o), (878,-63,cs), @@ -93,10 +92,10 @@ nodes = ( (98,721,l), (98,692,l), (302,692,l), -(302,247,l), -(98,247,l), -(98,218,l), -(331,218,l), +(302,207,l), +(98,207,l), +(98,178,l), +(331,178,l), (331,721,l) ); }, @@ -104,8 +103,8 @@ nodes = ( closed = 1; nodes = ( (84,721,l), -(84,126,l), -(113,126,l), +(84,178,l), +(113,178,l), (113,721,l) ); } @@ -174,9 +173,7 @@ nodes = ( (789,32,o), (765,32,o), (744,33,c), -(761,-1,o), -(777,-56,o), -(781,-92,c), +(781,-92,l), (832,-92,o), (872,-90,o), (904,-69,cs), @@ -205,10 +202,10 @@ nodes = ( (141,758,l), (141,627,l), (232,627,l), -(232,300,l), -(141,300,l), -(141,168,l), -(354,168,l), +(232,250,l), +(141,250,l), +(141,118,l), +(354,118,l), (354,758,l) ); }, @@ -216,8 +213,8 @@ nodes = ( closed = 1; nodes = ( (59,758,l), -(59,87,l), -(184,87,l), +(59,118,l), +(184,118,l), (184,758,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_C_.glyph index bfc5cf0..d26cf38 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_C_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54FC; layers = ( { @@ -51,9 +52,7 @@ nodes = ( (598,-43,o), (546,-43,o), (476,-42,c), -(480,-51,o), -(486,-61,o), -(488,-68,c), +(488,-68,l), (570,-68,o), (614,-69,o), (635,-64,cs), @@ -77,7 +76,7 @@ nodes = ( (724,228,o), (819,270,o), (880,316,c), -(858,331,l), +(860,329,l), (851,329,l) ); }, @@ -100,10 +99,10 @@ nodes = ( (98,742,l), (98,713,l), (276,713,l), -(276,268,l), -(98,268,l), -(98,238,l), -(305,238,l), +(276,228,l), +(98,228,l), +(98,198,l), +(305,198,l), (305,742,l) ); }, @@ -111,8 +110,8 @@ nodes = ( closed = 1; nodes = ( (84,742,l), -(84,146,l), -(113,146,l), +(84,198,l), +(113,198,l), (113,742,l) ); } @@ -170,9 +169,7 @@ nodes = ( (580,24,o), (529,24,o), (494,26,c), -(510,-8,o), -(528,-57,o), -(533,-94,c), +(533,-94,l), (601,-94,o), (655,-94,o), (698,-76,cs), @@ -196,7 +193,7 @@ nodes = ( (775,175,o), (869,241,o), (943,301,c), -(856,377,l), +(863,370,l), (825,370,l) ); }, @@ -219,10 +216,10 @@ nodes = ( (137,784,l), (137,653,l), (240,653,l), -(240,326,l), -(137,326,l), -(137,194,l), -(364,194,l), +(240,266,l), +(137,266,l), +(137,134,l), +(364,134,l), (364,784,l) ); }, @@ -230,8 +227,8 @@ nodes = ( closed = 1; nodes = ( (56,784,l), -(56,113,l), -(180,113,l), +(56,134,l), +(180,134,l), (180,784,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_D_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_D_.glyph index e75be49..3a9133d 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_D_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_D_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54FD; layers = ( { @@ -47,9 +48,7 @@ nodes = ( (475,54,o), (668,-37,o), (937,-67,c), -(941,-58,o), -(948,-47,o), -(955,-40,c), +(955,-40,l), (686,-15,o), (498,74,o), (424,253,c) @@ -63,9 +62,7 @@ nodes = ( (631,225,o), (619,54,o), (276,-28,c), -(281,-35,o), -(288,-47,o), -(292,-55,c), +(292,-55,l), (641,35,o), (661,213,o), (661,385,cs), @@ -78,10 +75,10 @@ nodes = ( (94,727,l), (94,698,l), (278,698,l), -(278,229,l), -(94,229,l), -(94,199,l), -(307,199,l), +(278,189,l), +(94,189,l), +(94,159,l), +(307,159,l), (307,727,l) ); }, @@ -89,8 +86,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(113,96,l), +(84,159,l), +(113,159,l), (113,727,l) ); } @@ -144,9 +141,7 @@ nodes = ( (475,20,o), (630,-63,o), (900,-90,c), -(918,-51,o), -(955,10,o), -(985,41,c), +(985,41,l), (738,54,o), (577,110,o), (499,232,c) @@ -160,9 +155,7 @@ nodes = ( (590,213,o), (548,82,o), (266,29,c), -(296,0,o), -(334,-55,o), -(350,-85,c), +(350,-85,l), (659,-8,o), (728,163,o), (728,361,cs), @@ -175,10 +168,10 @@ nodes = ( (132,773,l), (132,640,l), (223,640,l), -(223,298,l), -(132,298,l), -(132,165,l), -(342,165,l), +(223,238,l), +(132,238,l), +(132,105,l), +(342,105,l), (342,773,l) ); }, @@ -186,8 +179,8 @@ nodes = ( closed = 1; nodes = ( (57,773,l), -(57,80,l), -(177,80,l), +(57,105,l), +(177,105,l), (177,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_F_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_F_.glyph index 99cc892..68d1c9b 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_F_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni54F_F_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni54FF; layers = ( { @@ -17,9 +18,8 @@ nodes = ( closed = 1; nodes = ( (449,718,l), -(449,712,ls), -(435,558,o), -(421,499,o), +(440,610,o), +(429,507,o), (403,481,cs), (396,474,o), (388,474,o), @@ -27,20 +27,15 @@ nodes = ( (359,474,o), (320,474,o), (277,478,c), -(281,470,o), -(284,458,o), -(285,450,c), +(285,450,l), (323,447,o), (361,446,o), (378,446,cs), (401,447,o), (413,451,o), (426,462,cs), -(448,484,o), -(462,542,o), -(477,699,cs), -(478,705,o), -(479,718,o), +(455,491,o), +(467,592,o), (479,718,c) ); }, @@ -64,9 +59,7 @@ nodes = ( (704,-39,o), (645,-39,o), (563,-37,c), -(569,-47,o), -(574,-58,o), -(576,-67,c), +(576,-67,l), (664,-67,o), (718,-67,o), (743,-62,cs), @@ -79,23 +72,23 @@ nodes = ( { closed = 1; nodes = ( -(180,259,l), -(180,-19,l), -(209,-19,l), -(209,259,l) +(190,259,l), +(190,24,l), +(219,24,l), +(219,259,l) ); }, { closed = 1; nodes = ( -(197,259,l), -(197,229,l), -(495,229,l), -(495,74,l), -(197,74,l), -(197,44,l), -(525,44,l), -(525,259,l) +(207,259,l), +(207,229,l), +(505,229,l), +(505,54,l), +(207,54,l), +(207,24,l), +(535,24,l), +(535,259,l) ); }, { @@ -105,9 +98,7 @@ nodes = ( (247,629,o), (212,503,o), (53,437,c), -(59,432,o), -(70,423,o), -(74,416,c), +(74,416,l), (237,486,o), (276,618,o), (287,830,c) @@ -151,9 +142,8 @@ nodes = ( closed = 1; nodes = ( (353,771,l), -(353,753,ls), -(350,625,o), -(346,576,o), +(351,678,o), +(350,581,o), (336,563,cs), (328,554,o), (320,552,o), @@ -161,20 +151,15 @@ nodes = ( (293,552,o), (267,553,o), (237,556,c), -(255,524,o), -(269,473,o), -(271,435,c), +(271,435,l), (317,434,o), (358,435,o), (383,440,cs), (412,444,o), (435,453,o), (456,478,cs), -(479,506,o), -(486,577,o), -(490,725,cs), -(491,740,o), -(491,771,o), +(485,514,o), +(487,619,o), (491,771,c) ); }, @@ -198,9 +183,7 @@ nodes = ( (659,30,o), (599,29,o), (560,32,c), -(578,-4,o), -(597,-59,o), -(603,-99,c), +(603,-99,l), (678,-99,o), (737,-98,o), (783,-78,cs), @@ -214,8 +197,8 @@ nodes = ( closed = 1; nodes = ( (156,265,l), -(156,-50,l), -(296,-50,l), +(156,-13,l), +(296,-13,l), (296,265,l) ); }, @@ -239,9 +222,7 @@ nodes = ( (169,688,o), (162,581,o), (21,517,c), -(50,493,o), -(86,444,o), -(99,411,c), +(99,411,l), (278,496,o), (301,643,o), (308,854,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5501.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5501.glyph index ddff2b0..1728204 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5501.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5501.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5501; layers = ( { @@ -25,10 +26,10 @@ nodes = ( { closed = 1; nodes = ( -(433,5,l), -(433,-24,l), -(867,-24,l), -(867,5,l) +(433,-25,l), +(433,-54,l), +(867,-54,l), +(867,-25,l) ); }, { @@ -44,12 +45,12 @@ nodes = ( closed = 1; nodes = ( (419,245,l), -(419,-73,l), -(448,-73,l), +(419,-54,l), +(448,-54,l), (448,216,l), (848,216,l), -(848,-70,l), -(877,-70,l), +(848,-54,l), +(877,-54,l), (877,245,l) ); }, @@ -72,10 +73,10 @@ nodes = ( (95,727,l), (95,698,l), (276,698,l), -(276,229,l), -(95,229,l), -(95,199,l), -(305,199,l), +(276,189,l), +(95,189,l), +(95,159,l), +(305,159,l), (305,727,l) ); }, @@ -83,8 +84,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -116,10 +117,10 @@ nodes = ( { closed = 1; nodes = ( -(490,48,l), -(490,-66,l), -(819,-66,l), -(819,48,l) +(490,28,l), +(490,-86,l), +(819,-86,l), +(819,28,l) ); }, { @@ -135,12 +136,12 @@ nodes = ( closed = 1; nodes = ( (403,250,l), -(403,-92,l), -(538,-92,l), +(403,-86,l), +(538,-86,l), (538,136,l), (769,136,l), -(769,-89,l), -(911,-89,l), +(769,-86,l), +(911,-86,l), (911,250,l) ); }, @@ -163,10 +164,10 @@ nodes = ( (138,773,l), (138,640,l), (226,640,l), -(226,298,l), -(138,298,l), -(138,165,l), -(348,165,l), +(226,238,l), +(138,238,l), +(138,105,l), +(348,105,l), (348,773,l) ); }, @@ -174,8 +175,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(183,80,l), +(59,105,l), +(183,105,l), (183,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5506.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5506.glyph index 23c1e76..f0bb3ca 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5506.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5506.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni5506; layers = ( { +guides = ( +{ +angle = 183.8763; +pos = (871,615); +} +); layerId = m01; shapes = ( { @@ -11,9 +18,7 @@ nodes = ( (513,321,o), (409,225,o), (307,162,c), -(315,156,o), -(327,145,o), -(331,139,c), +(331,139,l), (431,206,o), (536,306,o), (603,416,c) @@ -27,13 +32,11 @@ nodes = ( (738,104,o), (514,-2,o), (295,-42,c), -(301,-49,o), -(308,-61,o), -(311,-68,c), +(311,-68,l), (536,-22,o), (763,85,o), (852,308,c), -(833,319,l), +(835,317,l), (826,317,l) ); }, @@ -66,9 +69,7 @@ nodes = ( (529,127,o), (689,-9,o), (932,-66,c), -(937,-59,o), -(945,-48,o), -(951,-42,c), +(951,-42,l), (706,12,o), (546,146,o), (482,279,c) @@ -77,7 +78,7 @@ nodes = ( { closed = 1; nodes = ( -(386,585,o), +(386,592,o), (416,595,o), (416,595,c), (416,596,l), @@ -91,18 +92,14 @@ nodes = ( (412,625,o), (392,611,o), (376,610,c), -(380,601,o), -(384,583,o), -(386,575,c) +(386,582,l) ); }, { closed = 1; nodes = ( -(386,575,l), -(408,583,o), -(443,586,o), -(871,615,c), +(386,582,l), +(871,615,l), (869,621,o), (867,634,o), (866,643,c), @@ -116,10 +113,10 @@ nodes = ( (95,727,l), (95,698,l), (270,698,l), -(270,229,l), -(95,229,l), -(95,199,l), -(299,199,l), +(270,219,l), +(95,219,l), +(95,189,l), +(299,189,l), (299,727,l) ); }, @@ -127,8 +124,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,189,l), +(114,189,l), (114,727,l) ); }, @@ -152,9 +149,7 @@ nodes = ( (475,490,o), (398,417,o), (329,366,c), -(337,361,o), -(350,350,o), -(355,345,c), +(355,345,l), (420,398,o), (498,476,o), (557,545,c) @@ -165,6 +160,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 183.9679; +pos = (848,585); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -174,9 +175,7 @@ nodes = ( (524,346,o), (432,269,o), (347,221,c), -(376,199,o), -(423,149,o), -(445,124,c), +(445,124,l), (532,183,o), (636,281,o), (702,374,c) @@ -190,13 +189,11 @@ nodes = ( (729,153,o), (546,60,o), (319,26,c), -(344,-3,o), -(375,-59,o), -(388,-94,c), +(388,-94,l), (645,-41,o), (848,66,o), (939,298,c), -(845,340,l), +(856,335,l), (820,335,l) ); }, @@ -229,9 +226,7 @@ nodes = ( (520,83,o), (676,-44,o), (908,-92,c), -(926,-55,o), -(964,3,o), -(992,32,c), +(992,32,l), (767,61,o), (616,163,o), (552,272,c) @@ -240,7 +235,7 @@ nodes = ( { closed = 1; nodes = ( -(408,564,o), +(404,577,o), (480,603,o), (480,603,c), (480,605,l), @@ -254,18 +249,14 @@ nodes = ( (403,682,o), (385,668,o), (366,663,c), -(380,629,o), -(401,567,o), -(408,541,c) +(404,554,l) ); }, { closed = 1; nodes = ( -(408,541,l), -(447,557,o), -(502,561,o), -(848,585,c), +(404,554,l), +(848,585,l), (840,615,o), (828,667,o), (823,705,c), @@ -279,10 +270,10 @@ nodes = ( (138,773,l), (138,640,l), (226,640,l), -(226,298,l), -(138,298,l), -(138,165,l), -(355,165,l), +(226,258,l), +(138,258,l), +(138,125,l), +(355,125,l), (355,773,l) ); }, @@ -290,8 +281,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(185,80,l), +(59,125,l), +(185,125,l), (185,773,l) ); }, @@ -315,9 +306,7 @@ nodes = ( (473,509,o), (393,455,o), (324,420,c), -(351,397,o), -(396,344,o), -(416,319,c), +(416,319,l), (487,364,o), (581,441,o), (644,506,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5507.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5507.glyph index a76570a..ed157b8 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5507.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5507.glyph @@ -1,16 +1,23 @@ { +color = 4; glyphname = uni5507; layers = ( { +guides = ( +{ +angle = 196.0642; +pos = (544,334); +} +); layerId = m01; shapes = ( { closed = 1; nodes = ( -(307,3,l), -(307,-26,l), -(815,-26,l), -(815,3,l) +(307,-27,l), +(307,-56,l), +(815,-56,l), +(815,-27,l) ); }, { @@ -35,12 +42,12 @@ nodes = ( closed = 1; nodes = ( (294,210,l), -(294,-67,l), -(324,-67,l), +(294,-56,l), +(324,-56,l), (324,180,l), (797,180,l), -(797,-65,l), -(826,-65,l), +(797,-56,l), +(826,-56,l), (826,210,l) ); }, @@ -61,9 +68,7 @@ nodes = ( (160,366,o), (149,129,o), (45,-48,c), -(53,-52,o), -(65,-61,o), -(70,-66,c), +(70,-66,l), (176,115,o), (189,362,o), (189,535,cs), @@ -77,9 +82,7 @@ nodes = ( (563,359,o), (723,274,o), (931,242,c), -(935,251,o), -(943,263,o), -(951,270,c), +(951,270,l), (743,295,o), (586,377,o), (524,518,c) @@ -101,13 +104,9 @@ nodes = ( { closed = 1; nodes = ( -(317,263,l), -(330,273,o), -(353,279,o), -(544,334,c), -(543,339,o), -(542,351,o), -(542,359,c), +(314,268,l), +(544,334,l), +(542,359,l), (337,306,l), (317,289,l) ); @@ -115,18 +114,17 @@ nodes = ( { closed = 1; nodes = ( -(317,278,o), -(354,298,o), -(354,298,c), +(325,274,ls), +(346,286,o), +(354,317,o), +(354,341,cs), (354,514,l), (325,514,l), (325,344,ls), (325,308,o), (311,298,o), (301,294,c), -(306,285,o), -(314,272,o), -(317,263,c) +(314,268,l) ); } ); @@ -134,15 +132,21 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 194.0362; +pos = (557,289); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { closed = 1; nodes = ( -(350,46,l), -(350,-65,l), -(801,-65,l), -(801,46,l) +(350,26,l), +(350,-85,l), +(801,-85,l), +(801,26,l) ); }, { @@ -167,12 +171,12 @@ nodes = ( closed = 1; nodes = ( (283,210,l), -(283,-94,l), -(424,-94,l), +(283,-85,l), +(424,-85,l), (424,99,l), (742,99,l), -(742,-94,l), -(890,-94,l), +(742,-85,l), +(890,-85,l), (890,210,l) ); }, @@ -193,9 +197,7 @@ nodes = ( (120,403,o), (113,156,o), (20,-9,c), -(52,-25,o), -(117,-74,o), -(142,-102,c), +(142,-102,l), (248,81,o), (266,386,o), (266,569,cs), @@ -209,9 +211,7 @@ nodes = ( (556,328,o), (675,242,o), (904,211,c), -(919,246,o), -(952,299,o), -(979,326,c), +(979,326,l), (773,341,o), (651,401,o), (595,521,c) @@ -233,13 +233,9 @@ nodes = ( { closed = 1; nodes = ( -(328,217,l), -(349,232,o), -(385,246,o), -(557,289,c), -(554,316,o), -(553,365,o), -(555,398,c), +(319,229,l), +(557,289,l), +(555,398,l), (364,357,l), (317,320,l) ); @@ -247,18 +243,17 @@ nodes = ( { closed = 1; nodes = ( -(328,262,o), -(441,355,o), -(441,355,c), +(370,259,ls), +(417,287,o), +(441,351,o), +(441,406,cs), (441,526,l), (316,526,l), (316,422,ls), (316,367,o), (286,327,o), (262,308,c), -(283,289,o), -(317,243,o), -(328,217,c) +(319,229,l) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5509.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5509.glyph index 4671519..2fb27de 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5509.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5509.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni5509; layers = ( { +guides = ( +{ +angle = 183.9202; +pos = (855,602); +} +); layerId = m01; shapes = ( { @@ -24,9 +31,7 @@ nodes = ( (467,468,o), (415,379,o), (354,319,c), -(363,316,o), -(378,308,o), -(382,304,c), +(382,304,l), (439,366,o), (493,457,o), (528,551,c) @@ -58,9 +63,7 @@ nodes = ( (619,217,o), (597,63,o), (325,-48,c), -(331,-54,o), -(340,-64,o), -(344,-70,c), +(344,-70,l), (623,45,o), (648,204,o), (648,339,cs), @@ -74,9 +77,7 @@ nodes = ( (671,77,o), (783,-27,o), (938,-71,c), -(943,-63,o), -(952,-52,o), -(959,-45,c), +(959,-45,l), (806,-8,o), (695,93,o), (649,231,c) @@ -85,7 +86,7 @@ nodes = ( { closed = 1; nodes = ( -(406,574,o), +(404,580,o), (435,585,o), (435,585,c), (435,586,l), @@ -99,18 +100,14 @@ nodes = ( (429,615,o), (411,600,o), (395,599,c), -(400,590,o), -(404,572,o), -(406,565,c) +(404,571,l) ); }, { closed = 1; nodes = ( -(406,565,l), -(426,572,o), -(461,575,o), -(855,602,c), +(404,571,l), +(855,602,l), (852,608,o), (850,621,o), (849,629,c), @@ -124,10 +121,10 @@ nodes = ( (95,727,l), (95,698,l), (270,698,l), -(270,229,l), -(95,229,l), -(95,199,l), -(299,199,l), +(270,189,l), +(95,189,l), +(95,159,l), +(299,159,l), (299,727,l) ); }, @@ -135,8 +132,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -145,6 +142,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 183.7922; +pos = (851,574); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -167,9 +170,7 @@ nodes = ( (449,489,o), (400,411,o), (351,362,c), -(383,345,o), -(438,308,o), -(464,285,c), +(464,285,l), (514,343,o), (573,437,o), (609,521,c) @@ -201,9 +202,7 @@ nodes = ( (594,208,o), (563,81,o), (318,12,c), -(345,-14,o), -(385,-67,o), -(401,-99,c), +(401,-99,l), (688,-9,o), (731,164,o), (731,301,cs), @@ -217,9 +216,7 @@ nodes = ( (651,59,o), (738,-45,o), (897,-93,c), -(916,-57,o), -(954,-2,o), -(984,26,c), +(984,26,l), (845,56,o), (758,131,o), (716,237,c) @@ -228,7 +225,7 @@ nodes = ( { closed = 1; nodes = ( -(412,554,o), +(406,568,o), (485,593,o), (485,593,c), (485,596,l), @@ -242,18 +239,14 @@ nodes = ( (408,673,o), (389,660,o), (369,655,c), -(384,620,o), -(405,558,o), -(412,531,c) +(406,545,l) ); }, { closed = 1; nodes = ( -(412,531,l), -(450,546,o), -(504,551,o), -(851,574,c), +(406,545,l), +(851,574,l), (843,603,o), (832,652,o), (827,688,c), @@ -267,10 +260,10 @@ nodes = ( (135,773,l), (135,640,l), (230,640,l), -(230,298,l), -(135,298,l), -(135,165,l), -(361,165,l), +(230,238,l), +(135,238,l), +(135,105,l), +(361,105,l), (361,773,l) ); }, @@ -278,8 +271,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(187,80,l), +(59,105,l), +(187,105,l), (187,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni550F_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni550F_.glyph index 73f97fa..e910435 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni550F_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni550F_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni550F; layers = ( { @@ -29,9 +30,7 @@ nodes = ( (724,727,o), (518,641,o), (339,592,c), -(346,586,o), -(356,572,o), -(359,566,c), +(359,566,l), (536,621,o), (744,707,o), (869,817,c) @@ -74,9 +73,7 @@ nodes = ( (838,50,o), (804,50,o), (757,51,c), -(762,42,o), -(767,32,o), -(769,24,c), +(769,24,l), (822,24,o), (855,24,o), (871,29,cs), @@ -93,9 +90,7 @@ nodes = ( (538,468,o), (446,328,o), (330,238,c), -(338,233,o), -(351,224,o), -(356,218,c), +(356,218,l), (469,313,o), (564,454,o), (622,621,c) @@ -107,10 +102,10 @@ nodes = ( (89,727,l), (89,698,l), (276,698,l), -(276,229,l), -(89,229,l), -(89,199,l), -(305,199,l), +(276,189,l), +(89,189,l), +(89,159,l), +(305,159,l), (305,727,l) ); }, @@ -118,8 +113,8 @@ nodes = ( closed = 1; nodes = ( (79,727,l), -(79,96,l), -(108,96,l), +(79,159,l), +(108,159,l), (108,727,l) ); } @@ -155,9 +150,7 @@ nodes = ( (718,768,o), (534,700,o), (357,666,c), -(385,641,o), -(430,587,o), -(451,558,c), +(451,558,l), (622,606,o), (819,688,o), (939,799,c) @@ -200,9 +193,7 @@ nodes = ( (790,103,o), (766,103,o), (748,104,c), -(763,71,o), -(778,21,o), -(783,-16,c), +(783,-16,l), (831,-16,o), (869,-14,o), (902,5,cs), @@ -219,9 +210,7 @@ nodes = ( (507,470,o), (425,346,o), (314,272,c), -(342,248,o), -(390,195,o), -(408,168,c), +(408,168,l), (529,261,o), (625,411,o), (678,585,c) @@ -233,10 +222,10 @@ nodes = ( (132,773,l), (132,640,l), (217,640,l), -(217,298,l), -(132,298,l), -(132,165,l), -(346,165,l), +(217,238,l), +(132,238,l), +(132,105,l), +(346,105,l), (346,773,l) ); }, @@ -244,8 +233,8 @@ nodes = ( closed = 1; nodes = ( (54,773,l), -(54,80,l), -(179,80,l), +(54,105,l), +(179,105,l), (179,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5510.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5510.glyph index 898d920..f7e40ea 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5510.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5510.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5510; layers = ( { @@ -25,10 +26,10 @@ nodes = ( { closed = 1; nodes = ( -(292,5,l), -(292,-24,l), -(844,-24,l), -(844,5,l) +(292,-25,l), +(292,-54,l), +(844,-54,l), +(844,-25,l) ); }, { @@ -48,12 +49,12 @@ nodes = ( closed = 1; nodes = ( (276,195,l), -(276,-73,l), -(305,-73,l), +(276,-54,l), +(305,-54,l), (305,166,l), (822,166,l), -(822,-71,l), -(852,-71,l), +(822,-54,l), +(852,-54,l), (852,195,l) ); }, @@ -74,9 +75,7 @@ nodes = ( (127,286,o), (119,87,o), (42,-58,c), -(49,-61,o), -(61,-68,o), -(67,-74,c), +(67,-74,l), (145,74,o), (156,282,o), (156,431,cs), @@ -124,10 +123,10 @@ nodes = ( { closed = 1; nodes = ( -(374,43,l), -(374,-62,l), -(802,-62,l), -(802,43,l) +(374,23,l), +(374,-82,l), +(802,-82,l), +(802,23,l) ); }, { @@ -147,12 +146,12 @@ nodes = ( closed = 1; nodes = ( (277,198,l), -(277,-93,l), -(423,-93,l), +(277,-82,l), +(423,-82,l), (423,97,l), (744,97,l), -(744,-96,l), -(898,-96,l), +(744,-82,l), +(898,-82,l), (898,198,l) ); }, @@ -173,9 +172,7 @@ nodes = ( (105,335,o), (99,123,o), (15,-20,c), -(47,-34,o), -(108,-75,o), -(133,-99,c), +(133,-99,l), (227,59,o), (243,317,o), (243,485,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5511.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5511.glyph index 3de894f..f0ddb69 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5511.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5511.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5511; layers = ( { @@ -38,9 +39,7 @@ nodes = ( (452,564,o), (413,416,o), (328,319,c), -(335,315,o), -(348,306,o), -(353,301,c), +(353,301,l), (437,404,o), (479,552,o), (499,738,c) @@ -53,9 +52,7 @@ nodes = ( (799,573,o), (759,432,o), (674,340,c), -(682,336,o), -(695,327,o), -(700,323,c), +(700,323,l), (783,421,o), (826,562,o), (848,738,c) @@ -93,10 +90,10 @@ nodes = ( (95,727,l), (95,698,l), (273,698,l), -(273,229,l), -(95,229,l), -(95,199,l), -(302,199,l), +(273,189,l), +(95,189,l), +(95,159,l), +(302,159,l), (302,727,l) ); }, @@ -104,8 +101,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -150,9 +147,7 @@ nodes = ( (430,620,o), (410,472,o), (339,383,c), -(365,364,o), -(412,319,o), -(430,297,c), +(430,297,l), (515,406,o), (546,578,o), (557,775,c) @@ -165,9 +160,7 @@ nodes = ( (788,630,o), (768,489,o), (698,405,c), -(724,383,o), -(768,333,o), -(784,309,c), +(784,309,l), (874,415,o), (905,583,o), (918,775,c) @@ -205,10 +198,10 @@ nodes = ( (136,773,l), (136,640,l), (224,640,l), -(224,298,l), -(136,298,l), -(136,165,l), -(350,165,l), +(224,248,l), +(136,248,l), +(136,115,l), +(350,115,l), (350,773,l) ); }, @@ -216,8 +209,8 @@ nodes = ( closed = 1; nodes = ( (62,773,l), -(62,80,l), -(189,80,l), +(62,115,l), +(189,115,l), (189,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5514.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5514.glyph index 959b02c..3323ce5 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5514.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5514.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5514; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (95,727,l), (95,698,l), (284,698,l), -(284,229,l), -(95,229,l), -(95,199,l), -(314,199,l), +(284,189,l), +(95,189,l), +(95,159,l), +(314,159,l), (314,727,l) ); }, @@ -21,18 +22,18 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); }, { closed = 1; nodes = ( -(447,11,l), -(447,-18,l), -(858,-18,l), -(858,11,l) +(447,-29,l), +(447,-58,l), +(858,-58,l), +(858,-29,l) ); }, { @@ -57,12 +58,12 @@ nodes = ( closed = 1; nodes = ( (431,263,l), -(431,-72,l), -(461,-72,l), +(431,-58,l), +(461,-58,l), (461,233,l), (842,233,l), -(842,-69,l), -(871,-69,l), +(842,-58,l), +(871,-58,l), (871,263,l) ); }, @@ -70,13 +71,9 @@ nodes = ( closed = 1; nodes = ( (590,773,l), -(571,656,o), -(538,485,o), -(513,388,c), +(513,388,l), (544,388,l), -(567,482,o), -(600,650,o), -(621,769,c) +(621,769,l) ); }, { @@ -92,15 +89,11 @@ nodes = ( closed = 1; nodes = ( (819,612,l), -(819,606,ls), -(816,555,o), -(808,456,o), -(799,389,c), +(819,606,l), +(799,389,l), (828,386,l), -(837,454,o), -(844,545,o), -(848,612,c), -(827,615,l), +(848,612,l), +(838,612,l), (821,612,l) ); } @@ -117,10 +110,10 @@ nodes = ( (137,773,l), (137,640,l), (234,640,l), -(234,298,l), -(137,298,l), -(137,165,l), -(367,165,l), +(234,238,l), +(137,238,l), +(137,105,l), +(367,105,l), (367,773,l) ); }, @@ -128,18 +121,18 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(190,80,l), +(59,105,l), +(190,105,l), (190,773,l) ); }, { closed = 1; nodes = ( -(501,61,l), -(501,-63,l), -(839,-63,l), -(839,61,l) +(501,41,l), +(501,-83,l), +(839,-83,l), +(839,41,l) ); }, { @@ -164,12 +157,12 @@ nodes = ( closed = 1; nodes = ( (418,274,l), -(418,-94,l), -(552,-94,l), +(418,-83,l), +(552,-83,l), (552,150,l), (776,150,l), -(776,-90,l), -(917,-90,l), +(776,-83,l), +(917,-83,l), (917,274,l) ); }, @@ -177,13 +170,9 @@ nodes = ( closed = 1; nodes = ( (550,772,l), -(536,649,o), -(510,494,o), -(487,396,c), +(487,396,l), (631,396,l), -(652,489,o), -(678,637,o), -(696,760,c) +(696,760,l) ); }, { @@ -199,15 +188,11 @@ nodes = ( closed = 1; nodes = ( (743,646,l), -(743,631,ls), -(741,575,o), -(735,476,o), -(727,397,c), +(743,631,l), +(727,397,l), (867,388,l), -(875,463,o), -(883,553,o), -(885,645,c), -(780,651,l), +(885,646,l), +(805,646,l), (757,646,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni551B_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni551B_.glyph index fc12f80..5026c78 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni551B_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni551B_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni551B; layers = ( { @@ -11,9 +12,7 @@ nodes = ( (581,110,o), (740,-16,o), (941,-66,c), -(946,-58,o), -(955,-46,o), -(962,-39,c), +(962,-39,l), (762,6,o), (605,129,o), (535,298,c) @@ -27,13 +26,11 @@ nodes = ( (751,131,o), (527,6,o), (333,-41,c), -(340,-48,o), -(348,-60,o), -(351,-67,c), +(351,-67,l), (549,-15,o), (776,111,o), (869,312,c), -(851,324,l), +(853,322,l), (844,322,l) ); }, @@ -80,9 +77,7 @@ nodes = ( (543,334,o), (452,201,o), (303,116,c), -(311,111,o), -(321,103,o), -(326,96,c), +(326,96,l), (477,186,o), (569,322,o), (610,437,c) @@ -103,10 +98,10 @@ nodes = ( (95,727,l), (95,698,l), (273,698,l), -(273,229,l), -(95,229,l), -(95,199,l), -(302,199,l), +(273,189,l), +(95,189,l), +(95,159,l), +(302,159,l), (302,727,l) ); }, @@ -114,8 +109,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -133,9 +128,7 @@ nodes = ( (529,65,o), (670,-43,o), (900,-89,c), -(919,-51,o), -(958,7,o), -(988,37,c), +(988,37,l), (777,67,o), (632,150,o), (562,281,c) @@ -149,13 +142,11 @@ nodes = ( (717,157,o), (529,58,o), (310,20,c), -(336,-9,o), -(368,-63,o), -(382,-98,c), +(382,-98,l), (629,-41,o), (834,71,o), (929,293,c), -(835,338,l), +(845,333,l), (810,333,l) ); }, @@ -202,9 +193,7 @@ nodes = ( (502,350,o), (440,270,o), (342,211,c), -(375,192,o), -(425,149,o), -(449,117,c), +(449,117,l), (558,197,o), (627,291,o), (682,400,c) @@ -225,10 +214,10 @@ nodes = ( (127,773,l), (127,640,l), (227,640,l), -(227,298,l), -(127,298,l), -(127,165,l), -(352,165,l), +(227,238,l), +(127,238,l), +(127,105,l), +(352,105,l), (352,773,l) ); }, @@ -236,8 +225,8 @@ nodes = ( closed = 1; nodes = ( (53,773,l), -(53,80,l), -(174,80,l), +(53,105,l), +(174,105,l), (174,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5520.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5520.glyph index 409bdbb..50f70cb 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5520.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5520.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5520; layers = ( { @@ -57,9 +58,8 @@ nodes = ( closed = 1; nodes = ( (849,306,l), -(849,299,ls), -(828,84,o), -(807,1,o), +(835,154,o), +(819,12,o), (780,-24,cs), (771,-32,o), (762,-33,o), @@ -67,20 +67,15 @@ nodes = ( (727,-33,o), (680,-33,o), (630,-28,c), -(635,-36,o), -(638,-49,o), -(639,-58,c), +(639,-58,l), (684,-62,o), (728,-63,o), (750,-62,cs), (775,-62,o), (789,-58,o), (804,-44,cs), -(835,-14,o), -(856,67,o), -(878,286,cs), -(879,292,o), -(880,306,o), +(845,-4,o), +(862,130,o), (880,306,c) ); }, @@ -91,9 +86,7 @@ nodes = ( (599,219,o), (551,36,o), (334,-46,c), -(341,-52,o), -(351,-63,o), -(356,-69,c), +(356,-69,l), (575,20,o), (627,204,o), (648,416,c) @@ -105,10 +98,10 @@ nodes = ( (95,727,l), (95,698,l), (273,698,l), -(273,229,l), -(95,229,l), -(95,199,l), -(302,199,l), +(273,189,l), +(95,189,l), +(95,159,l), +(302,159,l), (302,727,l) ); }, @@ -116,8 +109,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -181,9 +174,8 @@ nodes = ( closed = 1; nodes = ( (782,323,l), -(782,305,l), -(771,147,o), -(755,81,o), +(777,237,o), +(769,95,o), (738,64,cs), (728,54,o), (719,52,o), @@ -191,20 +183,15 @@ nodes = ( (689,52,o), (660,52,o), (629,56,c), -(649,21,o), -(664,-34,o), -(666,-74,c), +(666,-74,l), (710,-75,o), (751,-74,o), (777,-69,cs), (807,-65,o), (831,-55,o), (855,-28,cs), -(885,5,o), -(903,89,o), -(919,271,cs), -(921,288,o), -(923,323,o), +(896,18,o), +(908,147,o), (923,323,c) ); }, @@ -215,9 +202,7 @@ nodes = ( (545,238,o), (529,99,o), (316,20,c), -(345,-6,o), -(381,-55,o), -(396,-89,c), +(396,-89,l), (643,13,o), (680,192,o), (696,407,c) @@ -229,10 +214,10 @@ nodes = ( (127,773,l), (127,640,l), (218,640,l), -(218,298,l), -(127,298,l), -(127,165,l), -(334,165,l), +(218,238,l), +(127,238,l), +(127,105,l), +(334,105,l), (334,773,l) ); }, @@ -240,8 +225,8 @@ nodes = ( closed = 1; nodes = ( (53,773,l), -(53,80,l), -(169,80,l), +(53,105,l), +(169,105,l), (169,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5522.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5522.glyph index 18d805a..1c26697 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5522.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5522.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5522; layers = ( { @@ -12,9 +13,7 @@ nodes = ( (622,168,o), (600,35,o), (321,-46,c), -(327,-53,o), -(334,-64,o), -(338,-71,c), +(338,-71,l), (625,18,o), (651,157,o), (651,271,cs), @@ -88,10 +87,10 @@ nodes = ( (102,746,l), (102,717,l), (282,717,l), -(282,199,l), -(102,199,l), -(102,170,l), -(312,170,l), +(282,159,l), +(102,159,l), +(102,130,l), +(312,130,l), (312,746,l) ); }, @@ -99,8 +98,8 @@ nodes = ( closed = 1; nodes = ( (87,746,l), -(87,84,l), -(117,84,l), +(87,130,l), +(117,130,l), (117,746,l) ); } @@ -119,9 +118,7 @@ nodes = ( (586,195,o), (554,84,o), (288,15,c), -(321,-12,o), -(363,-62,o), -(381,-92,c), +(381,-92,l), (663,0,o), (730,148,o), (730,281,cs), @@ -195,10 +192,10 @@ nodes = ( (134,768,l), (134,642,l), (228,642,l), -(228,285,l), -(134,285,l), -(134,159,l), -(353,159,l), +(228,235,l), +(134,235,l), +(134,109,l), +(353,109,l), (353,768,l) ); }, @@ -206,8 +203,8 @@ nodes = ( closed = 1; nodes = ( (59,768,l), -(59,75,l), -(182,75,l), +(59,109,l), +(182,109,l), (182,768,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5523.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5523.glyph index a269478..3a3c7f3 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5523.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5523.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5523; layers = ( { @@ -58,9 +59,7 @@ nodes = ( (932,-37,o), (944,-6,o), (949,119,c), -(940,122,o), -(928,127,o), -(919,132,c), +(919,132,l), (916,13,o), (908,-8,o), (861,-8,cs), @@ -88,10 +87,10 @@ nodes = ( (123,710,l), (123,680,l), (306,680,l), -(306,202,l), -(123,202,l), -(123,173,l), -(335,173,l), +(306,162,l), +(123,162,l), +(123,133,l), +(335,133,l), (335,710,l) ); }, @@ -99,8 +98,8 @@ nodes = ( closed = 1; nodes = ( (108,710,l), -(108,75,l), -(137,75,l), +(108,133,l), +(137,133,l), (137,710,l) ); } @@ -165,9 +164,7 @@ nodes = ( (918,-70,o), (957,-36,o), (974,84,c), -(933,93,o), -(872,115,o), -(843,137,c), +(843,137,l), (838,73,o), (832,61,o), (804,61,cs), @@ -195,10 +192,10 @@ nodes = ( (156,755,l), (156,626,l), (238,626,l), -(238,259,l), -(156,259,l), -(156,130,l), -(362,130,l), +(238,199,l), +(156,199,l), +(156,70,l), +(362,70,l), (362,755,l) ); }, @@ -206,8 +203,8 @@ nodes = ( closed = 1; nodes = ( (72,755,l), -(72,39,l), -(193,39,l), +(72,70,l), +(193,70,l), (193,755,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5524.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5524.glyph index 2059934..080f472 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5524.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5524.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5524; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (98,710,l), (98,680,l), (258,680,l), -(258,202,l), -(98,202,l), -(98,173,l), -(287,173,l), +(258,162,l), +(98,162,l), +(98,133,l), +(287,133,l), (287,710,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (85,710,l), -(85,75,l), -(115,75,l), +(85,133,l), +(115,133,l), (115,710,l) ); }, @@ -42,9 +43,7 @@ nodes = ( (514,748,o), (444,632,o), (343,547,c), -(351,543,o), -(362,535,o), -(368,528,c), +(368,528,l), (472,619,o), (541,736,o), (582,831,c) @@ -64,7 +63,7 @@ nodes = ( (716,602,o), (776,667,o), (814,727,c), -(793,742,l), +(795,740,l), (787,740,l) ); }, @@ -97,9 +96,7 @@ nodes = ( (679,114,o), (799,-11,o), (930,-70,c), -(935,-62,o), -(945,-51,o), -(953,-44,c), +(953,-44,l), (821,9,o), (705,129,o), (648,269,c) @@ -113,9 +110,7 @@ nodes = ( (625,311,o), (613,108,o), (275,-49,c), -(281,-55,o), -(290,-65,o), -(295,-71,c), +(295,-71,l), (637,92,o), (655,303,o), (655,452,cs), @@ -135,10 +130,10 @@ nodes = ( (134,755,l), (134,626,l), (219,626,l), -(219,259,l), -(134,259,l), -(134,130,l), -(343,130,l), +(219,209,l), +(134,209,l), +(134,80,l), +(343,80,l), (343,755,l) ); }, @@ -146,8 +141,8 @@ nodes = ( closed = 1; nodes = ( (53,755,l), -(53,39,l), -(174,39,l), +(53,80,l), +(174,80,l), (174,755,l) ); }, @@ -167,9 +162,7 @@ nodes = ( (487,772,o), (425,680,o), (334,611,c), -(362,589,o), -(405,537,o), -(423,505,c), +(423,505,l), (534,599,o), (608,708,o), (662,824,c) @@ -189,7 +182,7 @@ nodes = ( (791,547,o), (862,642,o), (902,714,c), -(808,777,l), +(814,771,l), (786,771,l) ); }, @@ -222,9 +215,7 @@ nodes = ( (658,58,o), (758,-40,o), (894,-88,c), -(913,-54,o), -(952,-2,o), -(980,25,c), +(980,25,l), (856,58,o), (756,130,o), (706,219,c) @@ -238,9 +229,7 @@ nodes = ( (591,271,o), (572,115,o), (304,4,c), -(336,-20,o), -(379,-65,o), -(398,-94,c), +(398,-94,l), (677,41,o), (725,234,o), (725,373,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5527.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5527.glyph index 1d18e9b..aafd53d 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5527.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5527.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni5527; layers = ( { +guides = ( +{ +angle = 206.3464; +pos = (588,131); +} +); layerId = m01; shapes = ( { @@ -50,9 +57,7 @@ nodes = ( (866,135,o), (824,134,o), (772,135,c), -(777,128,o), -(782,116,o), -(785,108,c), +(785,108,l), (848,108,o), (881,108,o), (900,114,cs), @@ -76,10 +81,8 @@ nodes = ( { closed = 1; nodes = ( -(343,2,l), -(356,15,o), -(378,27,o), -(588,131,c), +(339,8,l), +(588,131,l), (586,136,o), (583,146,o), (582,154,c), @@ -93,10 +96,10 @@ nodes = ( (95,727,l), (95,698,l), (258,698,l), -(258,229,l), -(95,229,l), -(95,199,l), -(287,199,l), +(258,189,l), +(95,189,l), +(95,159,l), +(287,159,l), (287,727,l) ); }, @@ -104,26 +107,25 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); }, { closed = 1; nodes = ( -(343,16,o), -(400,56,o), -(400,56,c), +(361,22,ls), +(385,37,o), +(400,70,o), +(400,98,cs), (400,771,l), (371,771,l), (371,102,ls), (371,61,o), (338,37,o), (324,29,c), -(330,22,o), -(339,10,o), -(343,2,c) +(339,8,l) ); } ); @@ -131,6 +133,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 203.0806; +pos = (588,102); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -179,9 +187,7 @@ nodes = ( (812,175,o), (796,175,o), (781,176,c), -(797,144,o), -(812,88,o), -(815,54,c), +(815,54,l), (857,54,o), (887,58,o), (914,79,cs), @@ -205,10 +211,8 @@ nodes = ( { closed = 1; nodes = ( -(357,-18,l), -(378,3,o), -(412,27,o), -(588,102,c), +(347,-1,l), +(588,102,l), (581,127,o), (572,175,o), (569,209,c), @@ -222,10 +226,10 @@ nodes = ( (125,773,l), (125,640,l), (213,640,l), -(213,298,l), -(125,298,l), -(125,165,l), -(322,165,l), +(213,278,l), +(125,278,l), +(125,145,l), +(322,145,l), (322,773,l) ); }, @@ -233,26 +237,25 @@ nodes = ( closed = 1; nodes = ( (60,773,l), -(60,80,l), -(173,80,l), +(60,145,l), +(173,145,l), (173,773,l) ); }, { closed = 1; nodes = ( -(357,27,o), -(472,95,o), -(472,95,c), +(391,29,ls), +(438,61,o), +(472,121,o), +(472,178,cs), (472,808,l), (354,808,l), (354,184,ls), (354,138,o), (321,104,o), (298,90,c), -(318,65,o), -(347,12,o), -(357,-18,c) +(347,-1,l) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni552A_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni552A_.glyph index d90b146..b47e10e 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni552A_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni552A_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni552A; layers = ( { @@ -65,9 +66,7 @@ nodes = ( (765,354,o), (854,265,o), (940,223,c), -(945,230,o), -(955,241,o), -(962,247,c), +(962,247,l), (875,283,o), (788,367,o), (746,454,c) @@ -80,9 +79,7 @@ nodes = ( (611,584,o), (539,362,o), (315,246,c), -(319,240,o), -(327,229,o), -(329,222,c), +(329,222,l), (563,339,o), (638,569,o), (666,827,c) @@ -94,10 +91,10 @@ nodes = ( (95,727,l), (95,698,l), (267,698,l), -(267,229,l), -(95,229,l), -(95,199,l), -(296,199,l), +(267,189,l), +(95,189,l), +(95,159,l), +(296,159,l), (296,727,l) ); }, @@ -105,8 +102,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -178,9 +175,7 @@ nodes = ( (760,344,o), (828,246,o), (904,191,c), -(923,220,o), -(964,263,o), -(993,284,c), +(993,284,l), (927,327,o), (863,402,o), (831,474,c) @@ -193,9 +188,7 @@ nodes = ( (579,641,o), (502,400,o), (320,276,c), -(348,254,o), -(393,209,o), -(414,181,c), +(414,181,l), (612,325,o), (700,587,o), (747,836,c) @@ -207,10 +200,10 @@ nodes = ( (136,773,l), (136,640,l), (230,640,l), -(230,298,l), -(136,298,l), -(136,165,l), -(357,165,l), +(230,238,l), +(136,238,l), +(136,105,l), +(357,105,l), (357,773,l) ); }, @@ -218,8 +211,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(184,80,l), +(59,105,l), +(184,105,l), (184,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni552C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni552C_.glyph index 98c3865..dcea504 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni552C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni552C_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni552C; layers = ( { @@ -36,14 +37,10 @@ closed = 1; nodes = ( (911,621,l), (911,615,l), -(898,575,o), -(880,532,o), -(867,502,c), +(867,502,l), (893,493,l), -(909,523,o), -(926,572,o), -(944,615,c), -(923,622,l), +(944,615,l), +(928,621,l), (917,621,l) ); }, @@ -70,9 +67,7 @@ nodes = ( (910,307,o), (921,326,o), (925,401,c), -(916,403,o), -(904,407,o), -(896,413,c), +(896,413,l), (894,344,o), (888,336,o), (856,336,cs), @@ -109,9 +104,7 @@ nodes = ( (554,59,o), (528,-10,o), (394,-51,c), -(400,-56,o), -(410,-67,o), -(413,-74,c), +(413,-74,l), (554,-28,o), (584,48,o), (588,239,c) @@ -131,9 +124,7 @@ nodes = ( (937,-59,o), (946,-32,o), (949,85,c), -(940,88,o), -(927,92,o), -(919,98,c), +(919,98,l), (917,-16,o), (913,-31,o), (887,-31,cs), @@ -161,10 +152,10 @@ nodes = ( (95,727,l), (95,698,l), (264,698,l), -(264,229,l), -(95,229,l), -(95,199,l), -(293,199,l), +(264,189,l), +(95,189,l), +(95,159,l), +(293,159,l), (293,727,l) ); }, @@ -172,8 +163,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); }, @@ -224,15 +215,11 @@ nodes = ( closed = 1; nodes = ( (842,658,l), -(842,644,ls), -(838,591,o), -(830,525,o), -(824,483,c), +(842,644,l), +(824,483,l), (934,458,l), -(947,506,o), -(962,579,o), -(973,643,c), -(879,662,l), +(973,643,l), +(890,658,l), (860,658,l) ); }, @@ -259,9 +246,7 @@ nodes = ( (919,286,o), (951,311,o), (963,399,c), -(931,405,o), -(883,421,o), -(860,437,c), +(860,437,l), (856,391,o), (851,382,o), (828,382,cs), @@ -298,9 +283,7 @@ nodes = ( (553,116,o), (553,48,o), (468,7,c), -(494,-16,o), -(527,-65,o), -(537,-95,c), +(537,-95,l), (665,-38,o), (678,73,o), (678,273,c) @@ -320,9 +303,7 @@ nodes = ( (940,-78,o), (968,-43,o), (978,81,c), -(946,89,o), -(897,108,o), -(874,126,c), +(874,126,l), (872,42,o), (869,27,o), (860,27,cs), @@ -350,10 +331,10 @@ nodes = ( (134,773,l), (134,650,l), (230,650,l), -(230,283,l), -(134,283,l), -(134,160,l), -(353,160,l), +(230,253,l), +(134,253,l), +(134,130,l), +(353,130,l), (353,773,l) ); }, @@ -361,8 +342,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(180,80,l), +(59,130,l), +(180,130,l), (180,773,l) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni552E_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni552E_.glyph index 6b10246..a884918 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni552E_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni552E_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni552E; layers = ( { @@ -20,10 +21,10 @@ nodes = ( { closed = 1; nodes = ( -(198,14,l), -(198,-16,l), -(812,-16,l), -(812,14,l) +(198,-26,l), +(198,-56,l), +(812,-56,l), +(812,-26,l) ); }, { @@ -48,12 +49,12 @@ nodes = ( closed = 1; nodes = ( (188,214,l), -(188,-71,l), -(218,-71,l), +(188,-56,l), +(218,-56,l), (218,184,l), (797,184,l), -(797,-71,l), -(826,-71,l), +(797,-56,l), +(826,-56,l), (826,214,l) ); }, @@ -64,9 +65,7 @@ nodes = ( (207,718,o), (129,610,o), (43,538,c), -(51,534,o), -(64,524,o), -(69,520,c), +(69,520,l), (151,594,o), (232,705,o), (284,822,c) @@ -126,10 +125,10 @@ nodes = ( { closed = 1; nodes = ( -(241,51,l), -(241,-62,l), -(750,-62,l), -(750,51,l) +(241,31,l), +(241,-82,l), +(750,-82,l), +(750,31,l) ); }, { @@ -154,12 +153,12 @@ nodes = ( closed = 1; nodes = ( (151,236,l), -(151,-98,l), -(296,-98,l), +(151,-82,l), +(296,-82,l), (296,123,l), (718,123,l), -(718,-98,l), -(870,-98,l), +(718,-82,l), +(870,-82,l), (870,236,l) ); }, @@ -170,9 +169,7 @@ nodes = ( (191,747,o), (103,632,o), (14,561,c), -(42,534,o), -(91,473,o), -(110,445,c), +(110,445,l), (208,534,o), (312,679,o), (377,817,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni552F_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni552F_.glyph index a71be56..e8558bf 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni552F_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni552F_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni552F; layers = ( { @@ -60,9 +61,7 @@ nodes = ( (495,702,o), (419,557,o), (326,462,c), -(332,457,o), -(343,448,o), -(348,443,c), +(348,443,l), (443,542,o), (521,690,o), (565,816,c) @@ -87,10 +86,10 @@ nodes = ( (102,734,l), (102,705,l), (277,705,l), -(277,199,l), -(102,199,l), -(102,170,l), -(306,170,l), +(277,159,l), +(102,159,l), +(102,130,l), +(306,130,l), (306,734,l) ); }, @@ -98,8 +97,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,94,l), -(117,94,l), +(87,130,l), +(117,130,l), (117,734,l) ); } @@ -166,9 +165,7 @@ nodes = ( (488,737,o), (417,582,o), (336,492,c), -(361,463,o), -(400,408,o), -(420,375,c), +(420,375,l), (522,487,o), (608,660,o), (664,813,c) @@ -193,10 +190,10 @@ nodes = ( (125,771,l), (125,631,l), (231,631,l), -(231,301,l), -(125,301,l), -(125,160,l), -(362,160,l), +(231,241,l), +(125,241,l), +(125,100,l), +(362,100,l), (362,771,l) ); }, @@ -204,8 +201,8 @@ nodes = ( closed = 1; nodes = ( (50,771,l), -(50,78,l), -(182,78,l), +(50,100,l), +(182,100,l), (182,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5530.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5530.glyph index adde781..f15e0a5 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5530.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5530.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5530; layers = ( { @@ -24,9 +25,7 @@ nodes = ( (857,-31,o), (819,-31,o), (772,-30,c), -(777,-39,o), -(782,-52,o), -(784,-60,c), +(784,-60,l), (841,-60,o), (871,-59,o), (889,-54,cs), @@ -42,10 +41,10 @@ nodes = ( (98,774,l), (98,745,l), (252,745,l), -(252,197,l), -(98,197,l), -(98,168,l), -(281,168,l), +(252,167,l), +(98,167,l), +(98,138,l), +(281,138,l), (281,774,l) ); }, @@ -53,8 +52,8 @@ nodes = ( closed = 1; nodes = ( (83,774,l), -(83,64,l), -(112,64,l), +(83,138,l), +(112,138,l), (112,774,l) ); }, @@ -80,9 +79,7 @@ nodes = ( (638,56,o), (614,56,o), (579,57,c), -(584,47,o), -(590,35,o), -(591,27,c), +(591,27,l), (629,27,o), (655,27,o), (670,33,cs), @@ -100,9 +97,7 @@ nodes = ( (358,346,o), (348,131,o), (249,-26,c), -(256,-29,o), -(269,-37,o), -(274,-42,c), +(274,-42,l), (375,118,o), (387,343,o), (387,504,cs), @@ -162,9 +157,7 @@ nodes = ( (803,25,o), (760,25,o), (718,27,c), -(733,-5,o), -(749,-55,o), -(753,-86,c), +(753,-86,l), (823,-87,o), (872,-83,o), (906,-64,cs), @@ -180,10 +173,10 @@ nodes = ( (113,782,l), (113,653,l), (183,653,l), -(183,258,l), -(113,258,l), -(113,129,l), -(288,129,l), +(183,268,l), +(113,268,l), +(113,139,l), +(288,139,l), (288,782,l) ); }, @@ -191,43 +184,41 @@ nodes = ( closed = 1; nodes = ( (53,782,l), -(53,62,l), -(158,62,l), +(53,139,l), +(158,139,l), (158,782,l) ); }, { closed = 1; nodes = ( -(399,432,l), -(399,0,l), -(481,0,l), -(481,324,l), -(651,324,l), -(651,432,l) +(402,432,l), +(402,0,l), +(484,0,l), +(484,324,l), +(654,324,l), +(654,432,l) ); }, { closed = 1; nodes = ( -(610,432,l), -(610,109,ls), -(610,102,o), -(609,100,o), -(604,100,cs), -(600,100,o), -(591,100,o), -(579,100,c), -(593,71,o), -(605,26,o), -(607,-4,c), -(634,-4,o), -(652,0,o), -(672,19,cs), -(691,38,o), -(694,70,o), -(694,105,cs), -(694,432,l) +(613,432,l), +(613,109,ls), +(613,102,o), +(612,100,o), +(607,100,cs), +(603,100,o), +(594,100,o), +(582,100,c), +(610,-4,l), +(637,-4,o), +(655,0,o), +(675,19,cs), +(694,38,o), +(697,70,o), +(697,105,cs), +(697,432,l) ); }, { @@ -238,9 +229,7 @@ nodes = ( (310,364,o), (302,139,o), (205,-15,c), -(234,-26,o), -(286,-56,o), -(309,-74,c), +(309,-74,l), (411,90,o), (427,349,o), (427,523,cs), @@ -263,14 +252,14 @@ nodes = ( { closed = 1; nodes = ( -(491,524,l), -(491,351,l), -(502,351,l), -(502,-96,l), -(588,-96,l), -(588,351,l), -(599,351,l), -(599,524,l) +(494,524,l), +(494,351,l), +(505,351,l), +(505,-96,l), +(591,-96,l), +(591,351,l), +(602,351,l), +(602,524,l) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5531.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5531.glyph index 39ae8de..58195f4 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5531.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5531.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5531; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (103,727,l), (103,698,l), (286,698,l), -(286,229,l), -(103,229,l), -(103,199,l), -(316,199,l), +(286,189,l), +(103,189,l), +(103,159,l), +(316,159,l), (316,727,l) ); }, @@ -21,35 +22,35 @@ nodes = ( closed = 1; nodes = ( (92,727,l), -(92,96,l), -(122,96,l), +(92,159,l), +(122,159,l), (122,727,l) ); }, { closed = 1; nodes = ( -(403,180,l), -(403,151,l), -(898,151,l), -(898,180,l) +(403,160,l), +(403,131,l), +(898,131,l), +(898,160,l) ); }, { closed = 1; nodes = ( -(403,4,l), -(403,-25,l), -(898,-25,l), -(898,4,l) +(403,-36,l), +(403,-65,l), +(898,-65,l), +(898,-36,l) ); }, { closed = 1; nodes = ( (390,349,l), -(390,-69,l), -(420,-69,l), +(390,-65,l), +(420,-65,l), (420,320,l), (885,320,l), (885,-65,l), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5533.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5533.glyph index cffa6e8..26488ee 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5533.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5533.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5533; layers = ( { @@ -47,9 +48,7 @@ nodes = ( (414,292,o), (400,102,o), (280,-38,c), -(287,-42,o), -(298,-53,o), -(302,-60,c), +(302,-60,l), (426,85,o), (443,287,o), (443,438,cs), @@ -63,9 +62,7 @@ nodes = ( (709,106,o), (794,-16,o), (947,-67,c), -(951,-59,o), -(960,-48,o), -(966,-42,c), +(966,-42,l), (817,2,o), (733,121,o), (701,287,c) @@ -79,9 +76,7 @@ nodes = ( (673,184,o), (637,50,o), (385,-49,c), -(393,-55,o), -(403,-64,o), -(408,-70,c), +(408,-70,l), (662,33,o), (703,173,o), (703,300,cs), @@ -107,10 +102,10 @@ nodes = ( (95,727,l), (95,698,l), (276,698,l), -(276,229,l), -(95,229,l), -(95,199,l), -(305,199,l), +(276,189,l), +(95,189,l), +(95,159,l), +(305,159,l), (305,727,l) ); }, @@ -118,8 +113,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -173,9 +168,7 @@ nodes = ( (400,331,o), (391,131,o), (277,-3,c), -(308,-19,o), -(367,-68,o), -(390,-95,c), +(390,-95,l), (518,55,o), (541,308,o), (541,475,cs), @@ -189,9 +182,7 @@ nodes = ( (704,94,o), (765,-28,o), (898,-89,c), -(916,-53,o), -(954,-1,o), -(984,24,c), +(984,24,l), (870,65,o), (811,159,o), (783,277,c) @@ -205,9 +196,7 @@ nodes = ( (655,226,o), (633,87,o), (455,4,c), -(484,-18,o), -(529,-66,o), -(547,-94,c), +(547,-94,l), (757,10,o), (788,192,o), (788,311,cs), @@ -233,10 +222,10 @@ nodes = ( (134,773,l), (134,650,l), (230,650,l), -(230,283,l), -(134,283,l), -(134,160,l), -(353,160,l), +(230,263,l), +(134,263,l), +(134,140,l), +(353,140,l), (353,773,l) ); }, @@ -244,8 +233,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(180,80,l), +(59,140,l), +(180,140,l), (180,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5537.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5537.glyph index 69bcbe7..ed45238 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5537.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5537.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni5537; layers = ( { +guides = ( +{ +angle = 183.8316; +pos = (873,508); +} +); layerId = m01; shapes = ( { @@ -44,9 +51,7 @@ nodes = ( (799,-23,o), (744,-23,o), (673,-22,c), -(678,-31,o), -(683,-43,o), -(686,-51,c), +(686,-51,l), (769,-51,o), (815,-52,o), (837,-46,cs), @@ -81,7 +86,7 @@ nodes = ( { closed = 1; nodes = ( -(382,477,o), +(380,484,o), (412,487,o), (412,487,c), (412,488,l), @@ -95,18 +100,14 @@ nodes = ( (409,517,o), (388,503,o), (373,502,c), -(378,493,o), -(380,475,o), -(382,468,c) +(380,475,l) ); }, { closed = 1; nodes = ( -(382,468,l), -(404,475,o), -(440,479,o), -(873,508,c), +(380,475,l), +(873,508,l), (871,515,o), (868,527,o), (868,536,c), @@ -133,10 +134,10 @@ nodes = ( (94,727,l), (94,698,l), (278,698,l), -(278,229,l), -(94,229,l), -(94,199,l), -(307,199,l), +(278,189,l), +(94,189,l), +(94,159,l), +(307,159,l), (307,727,l) ); }, @@ -144,8 +145,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -154,6 +155,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 183.8141; +pos = (877,466); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -196,9 +203,7 @@ nodes = ( (734,14,o), (682,14,o), (646,16,c), -(662,-14,o), -(679,-60,o), -(685,-93,c), +(685,-93,l), (756,-93,o), (811,-92,o), (851,-75,cs), @@ -233,7 +238,7 @@ nodes = ( { closed = 1; nodes = ( -(405,444,o), +(402,457,o), (477,480,o), (477,480,c), (477,482,l), @@ -247,18 +252,14 @@ nodes = ( (405,557,o), (386,545,o), (364,540,c), -(378,506,o), -(398,447,o), -(405,421,c) +(402,434,l) ); }, { closed = 1; nodes = ( -(405,421,l), -(445,437,o), -(502,441,o), -(877,466,c), +(402,434,l), +(877,466,l), (869,494,o), (858,543,o), (853,579,c), @@ -285,10 +286,10 @@ nodes = ( (135,773,l), (135,640,l), (224,640,l), -(224,298,l), -(135,298,l), -(135,165,l), -(345,165,l), +(224,238,l), +(135,238,l), +(135,105,l), +(345,105,l), (345,773,l) ); }, @@ -296,8 +297,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(178,80,l), +(59,105,l), +(178,105,l), (178,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni553C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni553C_.glyph index 601346a..a8c8b9f 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni553C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni553C_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni553C; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (95,727,l), (95,698,l), (273,698,l), -(273,229,l), -(95,229,l), -(95,199,l), -(302,199,l), +(273,189,l), +(95,189,l), +(95,159,l), +(302,159,l), (302,727,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); }, @@ -86,9 +87,7 @@ nodes = ( (739,105,o), (603,-1,o), (313,-39,c), -(320,-47,o), -(327,-59,o), -(330,-67,c), +(330,-67,l), (623,-23,o), (770,88,o), (817,292,c) @@ -111,13 +110,9 @@ nodes = ( closed = 1; nodes = ( (441,142,l), -(494,210,o), -(570,327,o), -(613,423,c), +(613,423,l), (582,429,l), -(542,337,o), -(467,218,o), -(408,144,c) +(408,144,l) ); }, { @@ -146,10 +141,10 @@ nodes = ( (144,773,l), (144,640,l), (214,640,l), -(214,298,l), -(144,298,l), -(144,165,l), -(339,165,l), +(214,238,l), +(144,238,l), +(144,105,l), +(339,105,l), (339,773,l) ); }, @@ -157,8 +152,8 @@ nodes = ( closed = 1; nodes = ( (55,773,l), -(55,80,l), -(177,80,l), +(55,105,l), +(177,105,l), (177,773,l) ); }, @@ -222,9 +217,7 @@ nodes = ( (687,87,o), (573,41,o), (332,26,c), -(354,-3,o), -(379,-56,o), -(388,-98,c), +(388,-98,l), (678,-57,o), (815,11,o), (876,233,c) @@ -247,13 +240,9 @@ nodes = ( closed = 1; nodes = ( (525,105,l), -(579,180,o), -(653,300,o), -(698,408,c), +(698,408,l), (564,435,l), -(522,330,o), -(445,204,o), -(382,123,c) +(382,123,l) ); }, { diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni553E_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni553E_.glyph index ef5c7e7..6cb0b2e 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni553E_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni553E_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni553E; layers = ( { @@ -11,9 +12,7 @@ nodes = ( (735,787,o), (540,768,o), (386,758,c), -(390,751,o), -(394,740,o), -(396,733,c), +(396,733,l), (552,741,o), (746,761,o), (858,789,c) @@ -88,10 +87,10 @@ nodes = ( (95,727,l), (95,698,l), (258,698,l), -(258,229,l), -(95,229,l), +(258,199,l), (95,199,l), -(287,199,l), +(95,169,l), +(287,169,l), (287,727,l) ); }, @@ -99,8 +98,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,169,l), +(114,169,l), (114,727,l) ); } @@ -118,9 +117,7 @@ nodes = ( (731,813,o), (548,796,o), (382,789,c), -(395,757,o), -(411,707,o), -(414,673,c), +(414,673,l), (578,675,o), (770,688,o), (919,715,c) @@ -195,10 +192,10 @@ nodes = ( (127,773,l), (127,640,l), (215,640,l), -(215,298,l), -(127,298,l), -(127,165,l), -(329,165,l), +(215,268,l), +(127,268,l), +(127,135,l), +(329,135,l), (329,773,l) ); }, @@ -206,8 +203,8 @@ nodes = ( closed = 1; nodes = ( (53,773,l), -(53,80,l), -(167,80,l), +(53,135,l), +(167,135,l), (167,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni553F_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni553F_.glyph index ef94b33..a65fe69 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni553F_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni553F_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni553F; layers = ( { @@ -11,9 +12,7 @@ nodes = ( (471,724,o), (418,623,o), (354,556,c), -(362,551,o), -(374,539,o), -(378,534,c), +(378,534,l), (442,606,o), (499,712,o), (532,824,c) @@ -26,9 +25,7 @@ nodes = ( (555,567,o), (472,440,o), (367,359,c), -(375,354,o), -(387,344,o), -(392,339,c), +(392,339,l), (494,425,o), (580,553,o), (629,705,c) @@ -41,9 +38,7 @@ nodes = ( (725,556,o), (662,423,o), (570,336,c), -(576,332,o), -(589,323,o), -(594,318,c), +(594,318,l), (685,409,o), (752,543,o), (789,705,c) @@ -62,9 +57,8 @@ nodes = ( closed = 1; nodes = ( (887,719,l), -(887,713,ls), -(872,451,o), -(857,356,o), +(877,541,o), +(868,367,o), (832,331,cs), (825,323,o), (816,322,o), @@ -72,20 +66,15 @@ nodes = ( (783,322,o), (738,322,o), (689,327,c), -(694,318,o), -(697,306,o), -(698,297,c), +(698,297,l), (741,294,o), (783,293,o), (805,293,cs), (829,294,o), (844,299,o), (857,313,cs), -(885,343,o), -(900,434,o), -(916,700,c), -(917,706,o), -(917,719,o), +(894,353,o), +(905,525,o), (917,719,c) ); }, @@ -103,9 +92,7 @@ nodes = ( (808,-51,o), (819,-26,o), (824,76,c), -(814,78,o), -(802,82,o), -(792,88,c), +(792,88,l), (789,-9,o), (782,-21,o), (745,-21,cs), @@ -163,10 +150,10 @@ nodes = ( (106,727,l), (106,698,l), (280,698,l), -(280,229,l), -(106,229,l), -(106,199,l), -(310,199,l), +(280,189,l), +(106,189,l), +(106,159,l), +(310,159,l), (310,727,l) ); }, @@ -174,8 +161,8 @@ nodes = ( closed = 1; nodes = ( (85,727,l), -(85,96,l), -(115,96,l), +(85,159,l), +(115,159,l), (115,727,l) ); } @@ -193,9 +180,7 @@ nodes = ( (431,768,o), (379,675,o), (317,618,c), -(348,599,o), -(403,558,o), -(428,535,c), +(428,535,l), (493,604,o), (556,716,o), (592,828,c) @@ -208,9 +193,7 @@ nodes = ( (527,582,o), (441,452,o), (340,373,c), -(368,357,o), -(417,320,o), -(438,300,c), +(438,300,l), (537,390,o), (632,535,o), (689,690,c) @@ -223,9 +206,7 @@ nodes = ( (682,569,o), (614,437,o), (525,357,c), -(552,342,o), -(602,309,o), -(623,291,c), +(623,291,l), (710,382,o), (786,527,o), (831,683,c) @@ -244,9 +225,8 @@ nodes = ( closed = 1; nodes = ( (842,766,l), -(842,744,ls), -(831,507,o), -(816,422,o), +(836,627,o), +(829,438,o), (799,401,cs), (790,389,o), (783,386,o), @@ -254,20 +234,15 @@ nodes = ( (759,386,o), (743,386,o), (722,389,c), -(740,355,o), -(752,303,o), -(754,265,c), +(754,265,l), (790,264,o), (822,265,o), (844,270,cs), (870,276,o), (891,286,o), (911,313,cs), -(940,350,o), -(956,456,o), -(971,714,cs), -(973,731,o), -(974,766,o), +(949,362,o), +(960,531,o), (974,766,c) ); }, @@ -285,9 +260,7 @@ nodes = ( (804,-79,o), (837,-44,o), (850,89,c), -(816,97,o), -(763,117,o), -(738,136,c), +(738,136,l), (734,49,o), (729,36,o), (705,36,cs), @@ -345,10 +318,10 @@ nodes = ( (128,773,l), (128,640,l), (219,640,l), -(219,298,l), -(128,298,l), -(128,165,l), -(345,165,l), +(219,268,l), +(128,268,l), +(128,135,l), +(345,135,l), (345,773,l) ); }, @@ -356,8 +329,8 @@ nodes = ( closed = 1; nodes = ( (53,773,l), -(53,80,l), -(179,80,l), +(53,135,l), +(179,135,l), (179,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5541.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5541.glyph index 6bb7f46..cf236be 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5541.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5541.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5541; layers = ( { @@ -12,9 +13,7 @@ nodes = ( (387,269,o), (374,80,o), (245,-55,c), -(252,-58,o), -(264,-65,o), -(269,-71,c), +(269,-71,l), (400,65,o), (417,264,o), (417,419,cs), @@ -41,9 +40,7 @@ nodes = ( (832,-33,o), (781,-34,o), (721,-32,c), -(725,-41,o), -(731,-54,o), -(733,-63,c), +(733,-63,l), (807,-63,o), (847,-63,o), (868,-57,cs), @@ -86,10 +83,10 @@ nodes = ( (516,304,l), (516,275,l), (740,275,l), -(740,115,l), -(516,115,l), +(740,85,l), (516,85,l), -(770,85,l), +(516,55,l), +(770,55,l), (770,304,l) ); }, @@ -97,8 +94,8 @@ nodes = ( closed = 1; nodes = ( (502,304,l), -(502,39,l), -(531,39,l), +(502,55,l), +(531,55,l), (531,304,l) ); }, @@ -108,10 +105,10 @@ nodes = ( (95,727,l), (95,698,l), (252,698,l), -(252,229,l), -(95,229,l), -(95,199,l), -(281,199,l), +(252,189,l), +(95,189,l), +(95,159,l), +(281,159,l), (281,727,l) ); }, @@ -119,8 +116,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -139,9 +136,7 @@ nodes = ( (379,283,o), (371,106,o), (268,-12,c), -(295,-27,o), -(347,-70,o), -(368,-94,c), +(368,-94,l), (485,38,o), (504,264,o), (504,425,cs), @@ -168,9 +163,7 @@ nodes = ( (786,37,o), (744,37,o), (707,39,c), -(725,5,o), -(744,-55,o), -(748,-91,c), +(748,-91,l), (816,-91,o), (863,-88,o), (899,-66,cs), @@ -224,8 +217,8 @@ nodes = ( closed = 1; nodes = ( (518,327,l), -(518,25,l), -(621,25,l), +(518,69,l), +(621,69,l), (621,327,l) ); }, @@ -235,10 +228,10 @@ nodes = ( (133,773,l), (133,640,l), (221,640,l), -(221,298,l), -(133,298,l), -(133,165,l), -(342,165,l), +(221,278,l), +(133,278,l), +(133,145,l), +(342,145,l), (342,773,l) ); }, @@ -246,8 +239,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(183,80,l), +(59,145,l), +(183,145,l), (183,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5543.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5543.glyph index 49ba9a6..d54073f 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5543.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5543.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5543; layers = ( { @@ -44,9 +45,7 @@ nodes = ( (805,-39,o), (759,-40,o), (700,-38,c), -(706,-47,o), -(711,-60,o), -(713,-67,c), +(713,-67,l), (781,-67,o), (820,-67,o), (840,-62,cs), @@ -98,10 +97,10 @@ nodes = ( (102,727,l), (102,698,l), (268,698,l), -(268,229,l), -(102,229,l), -(102,199,l), -(297,199,l), +(268,189,l), +(102,189,l), +(102,159,l), +(297,159,l), (297,727,l) ); }, @@ -109,8 +108,8 @@ nodes = ( closed = 1; nodes = ( (91,727,l), -(91,96,l), -(121,96,l), +(91,159,l), +(121,159,l), (121,727,l) ); } @@ -161,9 +160,7 @@ nodes = ( (739,25,o), (704,25,o), (679,27,c), -(694,-3,o), -(710,-49,o), -(715,-82,c), +(715,-82,l), (774,-82,o), (821,-81,o), (856,-64,cs), @@ -215,10 +212,10 @@ nodes = ( (133,773,l), (133,640,l), (206,640,l), -(206,298,l), -(133,298,l), -(133,165,l), -(325,165,l), +(206,238,l), +(133,238,l), +(133,105,l), +(325,105,l), (325,773,l) ); }, @@ -226,8 +223,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(175,80,l), +(59,105,l), +(175,105,l), (175,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5544.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5544.glyph index 0bbe1cb..67f4d8c 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5544.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5544.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5544; layers = ( { @@ -20,9 +21,7 @@ nodes = ( (589,635,o), (441,540,o), (304,480,c), -(312,474,o), -(323,462,o), -(327,456,c), +(327,456,l), (462,521,o), (611,619,o), (704,732,c) @@ -35,9 +34,7 @@ nodes = ( (577,422,o), (442,328,o), (338,286,c), -(346,280,o), -(354,270,o), -(359,262,c), +(359,262,l), (464,311,o), (596,405,o), (666,486,c) @@ -50,9 +47,7 @@ nodes = ( (612,235,o), (455,113,o), (323,59,c), -(329,53,o), -(337,42,o), -(342,34,c), +(342,34,l), (476,94,o), (630,218,o), (710,332,c) @@ -84,9 +79,7 @@ nodes = ( (552,-36,o), (515,-35,o), (482,-31,c), -(487,-40,o), -(490,-53,o), -(490,-63,c), +(490,-63,l), (520,-65,o), (558,-65,o), (575,-65,cs), @@ -105,9 +98,7 @@ nodes = ( (792,290,o), (857,124,o), (935,48,c), -(942,56,o), -(952,67,o), -(961,73,c), +(961,73,l), (882,140,o), (817,303,o), (785,455,c) @@ -132,10 +123,10 @@ nodes = ( (95,727,l), (95,698,l), (273,698,l), -(273,229,l), -(95,229,l), -(95,199,l), -(302,199,l), +(273,189,l), +(95,189,l), +(95,159,l), +(302,159,l), (302,727,l) ); }, @@ -143,8 +134,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -171,9 +162,7 @@ nodes = ( (557,659,o), (437,581,o), (319,536,c), -(345,509,o), -(387,451,o), -(405,423,c), +(405,423,l), (531,484,o), (665,586,o), (746,701,c) @@ -186,9 +175,7 @@ nodes = ( (512,418,o), (408,350,o), (323,318,c), -(349,292,o), -(381,243,o), -(398,211,c), +(398,211,l), (486,259,o), (597,346,o), (657,419,c) @@ -201,9 +188,7 @@ nodes = ( (562,251,o), (437,162,o), (329,121,c), -(357,93,o), -(389,44,o), -(406,11,c), +(406,11,l), (517,69,o), (648,174,o), (719,269,c) @@ -235,9 +220,7 @@ nodes = ( (536,41,o), (504,42,o), (468,46,c), -(491,7,o), -(502,-47,o), -(504,-85,c), +(504,-85,l), (533,-87,o), (563,-87,o), (586,-87,cs), @@ -256,9 +239,7 @@ nodes = ( (788,258,o), (824,100,o), (893,5,c), -(915,40,o), -(961,90,o), -(993,115,c), +(993,115,l), (933,188,o), (897,317,o), (879,441,c) @@ -283,10 +264,10 @@ nodes = ( (133,773,l), (133,640,l), (221,640,l), -(221,298,l), -(133,298,l), -(133,165,l), -(347,165,l), +(221,271,l), +(133,271,l), +(133,138,l), +(347,138,l), (347,773,l) ); }, @@ -294,8 +275,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(186,80,l), +(59,138,l), +(186,138,l), (186,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5546.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5546.glyph index 07ac676..4db61c1 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5546.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5546.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5546; layers = ( { @@ -26,9 +27,7 @@ nodes = ( (800,-37,o), (741,-38,o), (666,-36,c), -(672,-45,o), -(676,-56,o), -(678,-64,c), +(678,-64,l), (770,-64,o), (816,-64,o), (839,-59,cs), @@ -44,10 +43,10 @@ nodes = ( (338,275,l), (338,245,l), (642,245,l), -(642,92,l), -(338,92,l), -(338,63,l), -(672,63,l), +(642,62,l), +(338,62,l), +(338,33,l), +(672,33,l), (672,275,l) ); }, @@ -55,8 +54,8 @@ nodes = ( closed = 1; nodes = ( (326,275,l), -(326,10,l), -(355,10,l), +(326,33,l), +(355,33,l), (355,275,l) ); }, @@ -128,9 +127,7 @@ nodes = ( (349,391,o), (282,331,o), (221,287,c), -(229,282,o), -(241,272,o), -(246,267,c), +(246,267,l), (305,311,o), (374,376,o), (423,437,c) @@ -165,9 +162,7 @@ nodes = ( (742,13,o), (685,13,o), (643,15,c), -(659,-13,o), -(676,-58,o), -(682,-90,c), +(682,-90,l), (759,-90,o), (816,-89,o), (856,-72,cs), @@ -194,8 +189,8 @@ nodes = ( closed = 1; nodes = ( (295,281,l), -(295,-12,l), -(415,-12,l), +(295,26,l), +(415,26,l), (415,281,l) ); }, @@ -267,9 +262,7 @@ nodes = ( (351,396,o), (276,357,o), (219,332,c), -(235,303,o), -(262,235,o), -(269,211,c), +(269,211,l), (340,252,o), (435,324,o), (494,383,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5549.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5549.glyph index a93e200..ffba55a 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5549.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5549.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5549; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (106,751,l), (106,721,l), (257,721,l), -(257,225,l), -(106,225,l), -(106,195,l), -(286,195,l), +(257,205,l), +(106,205,l), +(106,175,l), +(286,175,l), (286,751,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (90,751,l), -(90,84,l), -(120,84,l), +(90,175,l), +(120,175,l), (120,751,l) ); }, @@ -64,9 +65,7 @@ nodes = ( (427,402,o), (357,199,o), (273,108,c), -(280,103,o), -(291,93,o), -(297,85,c), +(297,85,l), (381,185,o), (451,387,o), (486,589,c) @@ -79,9 +78,7 @@ nodes = ( (806,421,o), (878,206,o), (928,102,c), -(935,110,o), -(946,119,o), -(954,124,c), +(954,124,l), (903,221,o), (827,432,o), (788,596,c) @@ -112,9 +109,7 @@ nodes = ( (721,405,o), (651,201,o), (572,110,c), -(579,105,o), -(590,95,o), -(596,87,c), +(596,87,l), (675,188,o), (745,391,o), (781,587,c) @@ -144,8 +139,8 @@ nodes = ( closed = 1; nodes = ( (55,791,l), -(55,57,l), -(167,57,l), +(55,135,l), +(167,135,l), (167,791,l) ); }, @@ -187,9 +182,7 @@ nodes = ( (400,431,o), (348,244,o), (270,142,c), -(298,120,o), -(341,74,o), -(362,44,c), +(362,44,l), (437,166,o), (478,386,o), (501,590,c) @@ -202,9 +195,7 @@ nodes = ( (810,403,o), (851,182,o), (897,53,c), -(921,85,o), -(965,124,o), -(995,144,c), +(995,144,l), (943,259,o), (889,447,o), (861,606,c) @@ -235,9 +226,7 @@ nodes = ( (685,436,o), (628,249,o), (553,144,c), -(582,123,o), -(625,77,o), -(646,47,c), +(646,47,l), (718,171,o), (763,391,o), (788,591,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni554A_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni554A_.glyph index 8f789bf..88a1ada 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni554A_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni554A_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni554A; layers = ( { @@ -20,9 +21,7 @@ closed = 1; nodes = ( (519,791,l), (519,787,l), -(496,708,o), -(463,600,o), -(425,492,c), +(425,492,l), (495,396,o), (525,329,o), (525,267,cs), @@ -35,9 +34,7 @@ nodes = ( (458,173,o), (436,173,o), (412,176,c), -(419,167,o), -(423,154,o), -(424,145,c), +(424,145,l), (443,144,o), (466,144,o), (482,146,cs), @@ -50,10 +47,8 @@ nodes = ( (554,332,o), (524,402,o), (456,495,c), -(490,595,o), -(524,697,o), -(549,780,c), -(529,793,l), +(549,780,l), +(531,791,l), (524,791,l) ); }, @@ -63,10 +58,10 @@ nodes = ( (95,745,l), (95,716,l), (243,716,l), -(243,246,l), -(95,246,l), -(95,217,l), -(273,217,l), +(243,206,l), +(95,206,l), +(95,177,l), +(273,177,l), (273,745,l) ); }, @@ -74,8 +69,8 @@ nodes = ( closed = 1; nodes = ( (84,745,l), -(84,114,l), -(114,114,l), +(84,177,l), +(114,177,l), (114,745,l) ); }, @@ -92,8 +87,8 @@ nodes = ( closed = 1; nodes = ( (604,599,l), -(604,135,l), -(633,135,l), +(604,195,l), +(633,195,l), (633,570,l), (766,570,l), (766,599,l) @@ -110,9 +105,7 @@ nodes = ( (824,-31,o), (771,-32,o), (709,-30,c), -(714,-40,o), -(720,-54,o), -(721,-63,c), +(721,-63,l), (793,-63,o), (838,-63,o), (860,-57,cs), @@ -126,10 +119,10 @@ nodes = ( closed = 1; nodes = ( (747,599,l), -(747,240,l), -(612,240,l), -(612,211,l), -(776,211,l), +(747,224,l), +(612,224,l), +(612,195,l), +(776,195,l), (776,599,l) ); } @@ -155,10 +148,8 @@ nodes = ( closed = 1; nodes = ( (479,821,l), -(479,811,ls), -(474,720,o), -(463,602,o), -(447,476,c), +(479,811,l), +(447,476,l), (479,382,o), (489,331,o), (489,281,cs), @@ -171,9 +162,7 @@ nodes = ( (455,203,o), (445,203,o), (438,203,c), -(454,173,o), -(462,127,o), -(463,96,c), +(463,96,l), (480,96,o), (497,96,o), (510,99,cs), @@ -186,10 +175,8 @@ nodes = ( (600,332,o), (584,396,o), (548,491,c), -(567,598,o), -(583,700,o), -(596,785,c), -(511,825,l), +(596,785,l), +(520,821,l), (496,821,l) ); }, @@ -199,10 +186,10 @@ nodes = ( (122,785,l), (122,643,l), (196,643,l), -(196,280,l), -(122,280,l), -(122,139,l), -(304,139,l), +(196,220,l), +(122,220,l), +(122,79,l), +(304,79,l), (304,785,l) ); }, @@ -210,8 +197,8 @@ nodes = ( closed = 1; nodes = ( (59,785,l), -(59,49,l), -(165,49,l), +(59,79,l), +(165,79,l), (165,785,l) ); }, @@ -228,8 +215,8 @@ nodes = ( closed = 1; nodes = ( (596,621,l), -(596,91,l), -(685,91,l), +(596,149,l), +(685,149,l), (685,493,l), (735,493,l), (735,621,l) @@ -246,9 +233,7 @@ nodes = ( (796,47,o), (752,46,o), (706,49,c), -(725,14,o), -(746,-50,o), -(750,-87,c), +(750,-87,l), (814,-86,o), (862,-82,o), (898,-60,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5550.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5550.glyph index 8b7d096..6fdaa43 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5550.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5550.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5550; layers = ( { @@ -38,9 +39,7 @@ nodes = ( (466,518,o), (404,416,o), (326,348,c), -(334,343,o), -(346,333,o), -(351,328,c), +(351,328,l), (427,399,o), (492,505,o), (529,625,c) @@ -53,9 +52,7 @@ nodes = ( (738,522,o), (684,423,o), (618,356,c), -(625,352,o), -(638,342,o), -(643,337,c), +(643,337,l), (708,407,o), (765,510,o), (799,621,c) @@ -106,10 +103,10 @@ nodes = ( (95,727,l), (95,698,l), (273,698,l), -(273,229,l), -(95,229,l), -(95,199,l), -(302,199,l), +(273,189,l), +(95,189,l), +(95,159,l), +(302,159,l), (302,727,l) ); }, @@ -117,8 +114,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -163,9 +160,7 @@ nodes = ( (464,520,o), (419,427,o), (356,370,c), -(383,347,o), -(429,297,o), -(448,271,c), +(448,271,l), (523,345,o), (583,465,o), (615,589,c) @@ -178,9 +173,7 @@ nodes = ( (732,526,o), (693,444,o), (633,393,c), -(660,370,o), -(706,319,o), -(724,293,c), +(724,293,l), (799,361,o), (852,471,o), (879,590,c) @@ -231,10 +224,10 @@ nodes = ( (133,773,l), (133,640,l), (230,640,l), -(230,298,l), -(133,298,l), -(133,165,l), -(356,165,l), +(230,238,l), +(133,238,l), +(133,105,l), +(356,105,l), (356,773,l) ); }, @@ -242,8 +235,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(186,80,l), +(59,105,l), +(186,105,l), (186,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5555.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5555.glyph index 3c6b141..35bbbd8 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5555.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5555.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5555; layers = ( { @@ -20,9 +21,7 @@ nodes = ( (435,704,o), (373,578,o), (299,495,c), -(306,490,o), -(319,479,o), -(324,474,c), +(324,474,l), (395,563,o), (460,691,o), (502,824,c) @@ -41,9 +40,8 @@ nodes = ( closed = 1; nodes = ( (893,691,l), -(893,682,ls), -(883,181,o), -(870,12,o), +(887,365,o), +(880,24,o), (841,-23,cs), (831,-36,o), (821,-38,o), @@ -51,20 +49,15 @@ nodes = ( (783,-38,o), (727,-37,o), (667,-32,c), -(672,-41,o), -(674,-53,o), -(675,-63,c), +(675,-63,l), (725,-66,o), (778,-67,o), (807,-67,cs), (835,-66,o), (853,-60,o), (868,-39,cs), -(903,4,o), -(912,161,o), -(922,668,cs), -(922,673,o), -(922,691,o), +(913,16,o), +(916,348,o), (922,691,c) ); }, @@ -93,9 +86,7 @@ nodes = ( (480,554,o), (441,472,o), (387,407,c), -(395,403,o), -(405,396,o), -(412,390,c), +(412,390,l), (468,460,o), (507,544,o), (533,613,c) @@ -120,10 +111,10 @@ nodes = ( (95,727,l), (95,698,l), (264,698,l), -(264,229,l), -(95,229,l), -(95,199,l), -(293,199,l), +(264,189,l), +(95,189,l), +(95,159,l), +(293,159,l), (293,727,l) ); }, @@ -131,8 +122,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -159,9 +150,7 @@ nodes = ( (427,743,o), (360,636,o), (275,572,c), -(307,555,o), -(364,517,o), -(389,495,c), +(389,495,l), (472,571,o), (548,693,o), (592,827,c) @@ -180,9 +169,8 @@ nodes = ( closed = 1; nodes = ( (816,722,l), -(816,690,ls), -(814,238,o), -(812,75,o), +(816,398,o), +(817,84,o), (792,43,cs), (783,28,o), (774,23,o), @@ -190,20 +178,15 @@ nodes = ( (738,23,o), (705,23,o), (665,27,c), -(685,-7,o), -(700,-60,o), -(701,-94,c), +(701,-94,l), (748,-95,o), (796,-95,o), (829,-88,cs), (863,-80,o), (887,-68,o), (911,-28,cs), -(940,21,o), -(943,180,o), -(946,659,cs), -(946,676,o), -(946,722,o), +(947,33,o), +(944,354,o), (946,722,c) ); }, @@ -232,9 +215,7 @@ nodes = ( (462,539,o), (423,477,o), (367,429,c), -(394,415,o), -(432,385,o), -(451,362,c), +(451,362,l), (516,425,o), (558,497,o), (591,574,c) @@ -259,10 +240,10 @@ nodes = ( (128,773,l), (128,640,l), (215,640,l), -(215,298,l), -(128,298,l), -(128,165,l), -(335,165,l), +(215,238,l), +(128,238,l), +(128,105,l), +(335,105,l), (335,773,l) ); }, @@ -270,8 +251,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(177,80,l), +(59,105,l), +(177,105,l), (177,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5556.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5556.glyph index 2edd635..ae9faa8 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5556.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5556.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5556; layers = ( { @@ -13,18 +14,14 @@ nodes = ( (629,236,o), (598,42,o), (278,-48,c), -(284,-55,o), -(293,-65,o), -(296,-70,c), +(296,-70,l), (551,4,o), (631,151,o), (643,219,c), (656,153,o), (734,-1,o), (935,-70,c), -(938,-65,o), -(948,-52,o), -(954,-45,c), +(954,-45,l), (693,40,o), (658,239,o), (659,292,cs), @@ -38,9 +35,7 @@ nodes = ( (625,587,o), (579,468,o), (342,410,c), -(348,404,o), -(357,393,o), -(360,386,c), +(360,386,l), (602,449,o), (653,574,o), (668,830,c) @@ -117,10 +112,10 @@ nodes = ( (100,732,l), (100,703,l), (301,703,l), -(301,258,l), -(100,258,l), -(100,229,l), -(330,229,l), +(301,218,l), +(100,218,l), +(100,189,l), +(330,189,l), (330,732,l) ); }, @@ -128,8 +123,8 @@ nodes = ( closed = 1; nodes = ( (83,732,l), -(83,124,l), -(112,124,l), +(83,189,l), +(112,189,l), (112,732,l) ); } @@ -149,18 +144,14 @@ nodes = ( (586,201,o), (508,82,o), (288,19,c), -(315,-7,o), -(354,-65,o), -(373,-98,c), +(373,-98,l), (520,-52,o), (633,51,o), (662,114,c), (684,50,o), (771,-55,o), (902,-99,c), -(923,-63,o), -(961,-8,o), -(989,26,c), +(989,26,l), (793,90,o), (737,203,o), (737,280,cs), @@ -174,9 +165,7 @@ nodes = ( (594,650,o), (585,538,o), (345,476,c), -(373,448,o), -(409,395,o), -(422,360,c), +(422,360,l), (704,443,o), (733,602,o), (743,854,c) @@ -253,10 +242,10 @@ nodes = ( (135,773,l), (135,639,l), (235,639,l), -(235,312,l), -(135,312,l), -(135,178,l), -(365,178,l), +(235,262,l), +(135,262,l), +(135,128,l), +(365,128,l), (365,773,l) ); }, @@ -264,8 +253,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,102,l), -(187,102,l), +(59,128,l), +(187,128,l), (187,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni555C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni555C_.glyph index 9d37c1d..0dd4c95 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni555C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni555C_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni555C; layers = ( { @@ -21,13 +22,11 @@ nodes = ( (539,588,o), (431,463,o), (322,409,c), -(329,403,o), -(336,393,o), -(340,386,c), +(340,386,l), (456,447,o), (565,573,o), (606,766,c), -(588,773,l), +(590,771,l), (582,771,l) ); }, @@ -61,13 +60,11 @@ nodes = ( (847,585,o), (729,462,o), (611,409,c), -(618,403,o), -(626,393,o), -(630,385,c), +(630,385,l), (754,445,o), (872,571,o), (917,766,c), -(899,773,l), +(901,771,l), (893,771,l) ); }, @@ -101,13 +98,11 @@ nodes = ( (534,134,o), (407,6,o), (275,-48,c), -(281,-53,o), -(289,-64,o), -(293,-70,c), +(293,-70,l), (431,-10,o), (560,120,o), (607,333,c), -(589,341,l), +(591,339,l), (583,339,l) ); }, @@ -141,13 +136,11 @@ nodes = ( (850,134,o), (707,6,o), (563,-48,c), -(570,-54,o), -(577,-65,o), -(581,-72,c), +(581,-72,l), (731,-12,o), (875,119,o), (929,332,c), -(912,341,l), +(914,339,l), (905,339,l) ); }, @@ -158,9 +151,7 @@ nodes = ( (697,138,o), (794,-6,o), (934,-70,c), -(939,-62,o), -(948,-52,o), -(956,-45,c), +(956,-45,l), (817,12,o), (721,153,o), (679,325,c) @@ -172,10 +163,10 @@ nodes = ( (106,751,l), (106,721,l), (257,721,l), -(257,225,l), -(106,225,l), -(106,195,l), -(286,195,l), +(257,185,l), +(106,185,l), +(106,155,l), +(286,155,l), (286,751,l) ); }, @@ -183,8 +174,8 @@ nodes = ( closed = 1; nodes = ( (90,751,l), -(90,84,l), -(120,84,l), +(90,155,l), +(120,155,l), (120,751,l) ); } @@ -212,13 +203,11 @@ nodes = ( (494,653,o), (419,533,o), (311,480,c), -(336,457,o), -(369,411,o), -(385,382,c), +(385,382,l), (519,457,o), (605,591,o), (640,788,c), -(562,812,l), +(567,809,l), (540,809,l) ); }, @@ -252,13 +241,11 @@ nodes = ( (807,653,o), (728,536,o), (617,484,c), -(641,461,o), -(674,416,o), -(689,387,c), +(689,387,l), (826,461,o), (915,592,o), (952,788,c), -(875,812,l), +(880,809,l), (854,809,l) ); }, @@ -292,13 +279,11 @@ nodes = ( (484,189,o), (392,65,o), (253,13,c), -(278,-12,o), -(310,-61,o), -(324,-92,c), +(324,-92,l), (491,-17,o), (596,123,o), (637,352,c), -(558,374,l), +(563,371,l), (536,371,l) ); }, @@ -332,13 +317,11 @@ nodes = ( (806,186,o), (710,61,o), (567,9,c), -(592,-16,o), -(624,-65,o), -(639,-97,c), +(639,-97,l), (811,-21,o), (919,119,o), (962,351,c), -(882,374,l), +(887,371,l), (860,371,l) ); }, @@ -349,9 +332,7 @@ nodes = ( (684,90,o), (774,-33,o), (903,-97,c), -(922,-64,o), -(961,-15,o), -(989,10,c), +(989,10,l), (870,56,o), (779,155,o), (734,266,c) @@ -363,10 +344,10 @@ nodes = ( (138,791,l), (138,678,l), (211,678,l), -(211,249,l), -(138,249,l), -(138,135,l), -(321,135,l), +(211,219,l), +(138,219,l), +(138,105,l), +(321,105,l), (321,791,l) ); }, @@ -374,8 +355,8 @@ nodes = ( closed = 1; nodes = ( (55,791,l), -(55,57,l), -(164,57,l), +(55,105,l), +(164,105,l), (164,791,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5561.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5561.glyph index 04ee3a5..0af433a 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5561.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5561.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5561; layers = ( { @@ -82,10 +83,10 @@ nodes = ( (98,727,l), (98,698,l), (264,698,l), -(264,229,l), -(98,229,l), -(98,199,l), -(293,199,l), +(264,189,l), +(98,189,l), +(98,159,l), +(293,159,l), (293,727,l) ); }, @@ -93,8 +94,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -183,10 +184,10 @@ nodes = ( (136,773,l), (136,640,l), (233,640,l), -(233,301,l), -(136,301,l), -(136,168,l), -(356,168,l), +(233,241,l), +(136,241,l), +(136,108,l), +(356,108,l), (356,773,l) ); }, @@ -194,8 +195,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(185,80,l), +(59,108,l), +(185,108,l), (185,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5564.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5564.glyph index 960a222..e963763 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5564.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5564.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5564; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (98,721,l), (98,692,l), (302,692,l), -(302,244,l), -(98,244,l), -(98,215,l), -(331,215,l), +(302,194,l), +(98,194,l), +(98,165,l), +(331,165,l), (331,721,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (84,721,l), -(84,126,l), -(113,126,l), +(84,165,l), +(113,165,l), (113,721,l) ); }, @@ -92,9 +93,7 @@ nodes = ( (638,418,o), (620,299,o), (403,230,c), -(409,224,o), -(417,213,o), -(421,205,c), +(421,205,l), (645,283,o), (668,410,o), (668,515,cs), @@ -114,10 +113,10 @@ nodes = ( (139,758,l), (139,627,l), (236,627,l), -(236,300,l), -(139,300,l), -(139,168,l), -(364,168,l), +(236,240,l), +(139,240,l), +(139,108,l), +(364,108,l), (364,758,l) ); }, @@ -125,8 +124,8 @@ nodes = ( closed = 1; nodes = ( (59,758,l), -(59,87,l), -(186,87,l), +(59,108,l), +(186,108,l), (186,758,l) ); }, @@ -196,9 +195,7 @@ nodes = ( (602,412,o), (584,317,o), (415,264,c), -(442,242,o), -(480,198,o), -(497,171,c), +(497,171,l), (677,247,o), (730,375,o), (730,493,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5565.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5565.glyph index 3180705..a622bc7 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5565.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5565.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5565; layers = ( { @@ -11,9 +12,7 @@ nodes = ( (682,690,o), (826,582,o), (939,520,c), -(944,527,o), -(954,538,o), -(962,544,c), +(962,544,l), (850,601,o), (704,708,o), (636,804,c) @@ -26,9 +25,7 @@ nodes = ( (564,709,o), (438,604,o), (311,537,c), -(318,531,o), -(329,519,o), -(333,514,c), +(333,514,l), (459,584,o), (586,692,o), (662,822,c) @@ -40,10 +37,10 @@ nodes = ( (108,734,l), (108,705,l), (265,705,l), -(265,199,l), -(108,199,l), -(108,170,l), -(294,170,l), +(265,159,l), +(108,159,l), +(108,130,l), +(294,130,l), (294,734,l) ); }, @@ -51,8 +48,8 @@ nodes = ( closed = 1; nodes = ( (90,734,l), -(90,94,l), -(120,94,l), +(90,130,l), +(120,130,l), (120,734,l) ); }, @@ -78,22 +75,22 @@ nodes = ( closed = 1; nodes = ( (416,264,l), -(416,-71,l), -(445,-71,l), +(416,-55,l), +(445,-55,l), (445,234,l), (837,234,l), -(837,-68,l), -(867,-68,l), +(837,-55,l), +(867,-55,l), (867,264,l) ); }, { closed = 1; nodes = ( -(430,4,l), -(430,-25,l), -(859,-25,l), -(859,4,l) +(430,-26,l), +(430,-55,l), +(859,-55,l), +(859,-26,l) ); }, { @@ -119,9 +116,7 @@ nodes = ( (660,662,o), (797,560,o), (923,501,c), -(936,537,o), -(962,595,o), -(986,627,c), +(986,627,l), (869,666,o), (740,747,o), (672,826,c) @@ -134,9 +129,7 @@ nodes = ( (550,746,o), (429,654,o), (288,603,c), -(317,578,o), -(368,525,o), -(389,497,c), +(389,497,l), (533,564,o), (668,677,o), (744,826,c) @@ -148,10 +141,10 @@ nodes = ( (122,771,l), (122,631,l), (207,631,l), -(207,301,l), -(122,301,l), -(122,160,l), -(327,160,l), +(207,241,l), +(122,241,l), +(122,100,l), +(327,100,l), (327,771,l) ); }, @@ -159,8 +152,8 @@ nodes = ( closed = 1; nodes = ( (57,771,l), -(57,78,l), -(178,78,l), +(57,100,l), +(178,100,l), (178,771,l) ); }, @@ -186,22 +179,22 @@ nodes = ( closed = 1; nodes = ( (419,241,l), -(419,-93,l), -(547,-93,l), +(419,-87,l), +(547,-87,l), (547,123,l), (767,123,l), -(767,-90,l), -(901,-90,l), +(767,-87,l), +(901,-87,l), (901,241,l) ); }, { closed = 1; nodes = ( -(487,50,l), -(487,-67,l), -(848,-67,l), -(848,50,l) +(487,30,l), +(487,-87,l), +(848,-87,l), +(848,30,l) ); }, { diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5566.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5566.glyph index 5377b60..f409c2f 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5566.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5566.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5566; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (95,727,l), (95,698,l), (246,698,l), -(246,229,l), -(95,229,l), -(95,199,l), -(276,199,l), +(246,189,l), +(95,189,l), +(95,159,l), +(276,159,l), (276,727,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); }, @@ -116,9 +117,7 @@ nodes = ( (399,-40,o), (366,-41,o), (328,-39,c), -(332,-49,o), -(337,-64,o), -(339,-71,c), +(339,-71,l), (385,-71,o), (414,-70,o), (429,-65,cs), @@ -141,10 +140,10 @@ nodes = ( (119,773,l), (119,640,l), (201,640,l), -(201,298,l), -(119,298,l), -(119,165,l), -(311,165,l), +(201,238,l), +(119,238,l), +(119,105,l), +(311,105,l), (311,773,l) ); }, @@ -152,8 +151,8 @@ nodes = ( closed = 1; nodes = ( (53,773,l), -(53,80,l), -(162,80,l), +(53,105,l), +(162,105,l), (162,773,l) ); }, @@ -247,9 +246,7 @@ nodes = ( (367,31,o), (337,31,o), (307,32,c), -(324,-3,o), -(341,-60,o), -(344,-94,c), +(344,-94,l), (403,-95,o), (445,-89,o), (476,-67,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5567.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5567.glyph index 5bd8672..2f26d39 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5567.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5567.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5567; layers = ( { @@ -48,9 +49,7 @@ nodes = ( (628,119,o), (603,17,o), (313,-45,c), -(319,-51,o), -(327,-63,o), -(329,-69,c), +(329,-69,l), (628,-1,o), (658,107,o), (658,196,cs), @@ -89,10 +88,10 @@ nodes = ( (95,727,l), (95,698,l), (252,698,l), -(252,229,l), -(95,229,l), -(95,199,l), -(281,199,l), +(252,189,l), +(95,189,l), +(95,159,l), +(281,159,l), (281,727,l) ); }, @@ -100,8 +99,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -156,9 +155,7 @@ nodes = ( (602,130,o), (573,55,o), (351,12,c), -(381,-15,o), -(419,-62,o), -(436,-93,c), +(436,-93,l), (684,-27,o), (733,83,o), (733,182,cs), @@ -197,10 +194,10 @@ nodes = ( (133,773,l), (133,640,l), (227,640,l), -(227,298,l), -(133,298,l), -(133,165,l), -(355,165,l), +(227,238,l), +(133,238,l), +(133,105,l), +(355,105,l), (355,773,l) ); }, @@ -208,8 +205,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(183,80,l), +(59,105,l), +(183,105,l), (183,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni556A_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni556A_.glyph index aac104c..ef397d6 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni556A_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni556A_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni556A; layers = ( { @@ -7,31 +8,31 @@ shapes = ( { closed = 1; nodes = ( -(624,20,l), -(624,-10,l), -(900,-10,l), -(900,20,l) +(624,-30,l), +(624,-60,l), +(900,-60,l), +(900,-30,l) ); }, { closed = 1; nodes = ( -(624,338,l), -(624,309,l), -(900,309,l), -(900,338,l) +(624,318,l), +(624,289,l), +(900,289,l), +(900,318,l) ); }, { closed = 1; nodes = ( (617,647,l), -(617,-71,l), -(646,-71,l), +(617,-60,l), +(646,-60,l), (646,618,l), (876,618,l), -(876,-65,l), -(906,-65,l), +(876,-60,l), +(906,-60,l), (906,647,l) ); }, @@ -81,9 +82,7 @@ nodes = ( (414,-34,o), (378,-34,o), (332,-33,c), -(337,-42,o), -(342,-55,o), -(344,-63,c), +(344,-63,l), (399,-63,o), (428,-62,o), (446,-57,cs), @@ -99,10 +98,10 @@ nodes = ( (95,727,l), (95,698,l), (246,698,l), -(246,229,l), -(95,229,l), -(95,199,l), -(276,199,l), +(246,179,l), +(95,179,l), +(95,149,l), +(276,149,l), (276,727,l) ); }, @@ -110,8 +109,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,149,l), +(114,149,l), (114,727,l) ); } @@ -125,31 +124,31 @@ shapes = ( { closed = 1; nodes = ( -(678,84,l), -(678,-50,l), -(882,-50,l), -(882,84,l) +(678,44,l), +(678,-90,l), +(882,-90,l), +(882,44,l) ); }, { closed = 1; nodes = ( -(678,379,l), -(678,252,l), -(882,252,l), -(882,379,l) +(678,349,l), +(678,222,l), +(882,222,l), +(882,349,l) ); }, { closed = 1; nodes = ( (618,676,l), -(618,-95,l), -(734,-95,l), +(618,-90,l), +(734,-90,l), (734,542,l), (823,542,l), -(823,-88,l), -(944,-88,l), +(823,-90,l), +(944,-90,l), (944,676,l) ); }, @@ -199,9 +198,7 @@ nodes = ( (371,25,o), (337,25,o), (305,27,c), -(320,-8,o), -(336,-62,o), -(339,-95,c), +(339,-95,l), (403,-95,o), (449,-91,o), (482,-70,cs), @@ -217,10 +214,10 @@ nodes = ( (119,773,l), (119,640,l), (198,640,l), -(198,298,l), -(119,298,l), -(119,165,l), -(308,165,l), +(198,238,l), +(119,238,l), +(119,105,l), +(308,105,l), (308,773,l) ); }, @@ -228,8 +225,8 @@ nodes = ( closed = 1; nodes = ( (53,773,l), -(53,80,l), -(162,80,l), +(53,105,l), +(162,105,l), (162,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni556C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni556C_.glyph index e30f504..4728676 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni556C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni556C_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni556C; layers = ( { @@ -16,10 +17,10 @@ nodes = ( { closed = 1; nodes = ( -(191,10,l), -(191,-19,l), -(814,-19,l), -(814,10,l) +(191,-30,l), +(191,-59,l), +(814,-59,l), +(814,-30,l) ); }, { @@ -43,31 +44,31 @@ nodes = ( { closed = 1; nodes = ( -(354,239,l), -(646,239,l), -(646,130,l), -(354,130,l) +(354,219,l), +(646,219,l), +(646,110,l), +(354,110,l) ); }, { closed = 1; nodes = ( -(325,269,l), -(325,100,l), -(675,100,l), -(675,269,l) +(325,249,l), +(325,80,l), +(675,80,l), +(675,249,l) ); }, { closed = 1; nodes = ( (176,383,l), -(176,-77,l), -(205,-77,l), +(176,-59,l), +(205,-59,l), (205,354,l), (799,354,l), -(799,-72,l), -(828,-72,l), +(799,-59,l), +(828,-59,l), (828,383,l) ); }, @@ -116,10 +117,10 @@ nodes = ( { closed = 1; nodes = ( -(217,42,l), -(217,-67,l), -(776,-67,l), -(776,42,l) +(217,22,l), +(217,-87,l), +(776,-87,l), +(776,22,l) ); }, { @@ -143,31 +144,31 @@ nodes = ( { closed = 1; nodes = ( -(425,178,l), -(570,178,l), -(570,141,l), -(425,141,l) +(425,168,l), +(570,168,l), +(570,131,l), +(425,131,l) ); }, { closed = 1; nodes = ( -(314,246,l), -(314,72,l), -(688,72,l), -(688,246,l) +(314,236,l), +(314,62,l), +(688,62,l), +(688,236,l) ); }, { closed = 1; nodes = ( (129,387,l), -(129,-95,l), -(270,-95,l), +(129,-87,l), +(270,-87,l), (270,279,l), (726,279,l), -(726,-95,l), -(875,-95,l), +(726,-87,l), +(875,-87,l), (875,387,l) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni556D_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni556D_.glyph index 55378eb..039a502 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni556D_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni556D_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni556D; layers = ( { @@ -38,7 +39,7 @@ nodes = ( { closed = 1; nodes = ( -(329,362,o), +(324,375,o), (354,374,o), (354,374,c), (354,375,l), @@ -49,21 +50,17 @@ nodes = ( (432,677,o), (378,510,o), (360,466,cs), -(344,421,o), -(331,385,o), -(318,382,c), -(323,376,o), -(327,360,o), -(329,352,c) +(346,426,o), +(327,397,o), +(313,394,c), +(324,365,l) ); }, { closed = 1; nodes = ( -(329,352,l), -(336,359,o), -(360,365,o), -(394,365,cs), +(324,365,l), +(394,365,l), (627,365,l), (627,394,l), (358,394,l), @@ -102,14 +99,10 @@ closed = 1; nodes = ( (885,345,l), (885,339,l), -(856,275,o), -(797,148,o), -(749,60,c), +(749,60,l), (776,51,l), -(823,141,o), -(882,262,o), -(917,339,c), -(896,348,l), +(917,339,l), +(901,345,l), (890,345,l) ); }, @@ -132,10 +125,10 @@ nodes = ( (113,751,l), (113,721,l), (264,721,l), -(264,225,l), -(113,225,l), -(113,195,l), -(293,195,l), +(264,185,l), +(113,185,l), +(113,155,l), +(293,155,l), (293,751,l) ); }, @@ -143,8 +136,8 @@ nodes = ( closed = 1; nodes = ( (97,751,l), -(97,84,l), -(127,84,l), +(97,155,l), +(127,155,l), (127,751,l) ); }, @@ -161,13 +154,9 @@ nodes = ( closed = 1; nodes = ( (761,830,l), -(737,674,o), -(695,443,o), -(664,316,c), +(664,316,l), (695,316,l), -(723,440,o), -(766,669,o), -(790,826,c) +(790,826,l) ); } ); @@ -211,7 +200,7 @@ nodes = ( { closed = 1; nodes = ( -(334,314,o), +(329,330,o), (395,355,o), (395,355,c), (395,358,l), @@ -225,18 +214,14 @@ nodes = ( (329,437,o), (317,408,o), (296,402,c), -(310,372,o), -(329,316,o), -(334,294,c) +(329,310,l) ); }, { closed = 1; nodes = ( -(334,294,l), -(343,304,o), -(380,310,o), -(406,310,cs), +(329,310,l), +(406,310,l), (610,310,l), (610,440,l), (388,440,l), @@ -275,14 +260,10 @@ closed = 1; nodes = ( (840,376,l), (840,363,l), -(815,295,o), -(764,174,o), -(720,81,c), +(720,81,l), (841,50,l), -(885,144,o), -(935,258,o), -(971,356,c), -(877,381,l), +(971,356,l), +(891,376,l), (857,376,l) ); }, @@ -305,10 +286,10 @@ nodes = ( (126,791,l), (126,678,l), (199,678,l), -(199,249,l), -(126,249,l), -(126,135,l), -(302,135,l), +(199,199,l), +(126,199,l), +(126,85,l), +(302,85,l), (302,791,l) ); }, @@ -316,8 +297,8 @@ nodes = ( closed = 1; nodes = ( (55,791,l), -(55,57,l), -(157,57,l), +(55,85,l), +(157,85,l), (157,791,l) ); }, @@ -334,13 +315,9 @@ nodes = ( closed = 1; nodes = ( (736,855,l), -(714,656,o), -(674,398,o), -(639,241,c), +(639,241,l), (766,241,l), -(797,391,o), -(837,643,o), -(864,844,c) +(864,844,l) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni556E_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni556E_.glyph index 5ac32cb..add9f44 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni556E_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni556E_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni556E; layers = ( { @@ -34,39 +35,39 @@ nodes = ( { closed = 1; nodes = ( -(616,306,l), -(679,251,o), -(751,173,o), -(784,122,c), -(808,140,l), -(774,190,o), -(702,267,o), -(638,322,c) +(616,276,l), +(679,221,o), +(751,143,o), +(784,92,c), +(808,110,l), +(774,160,o), +(702,237,o), +(638,292,c) ); }, { closed = 1; nodes = ( -(641,464,l), -(626,335,o), -(587,193,o), -(474,124,c), -(481,120,o), -(492,110,o), -(497,104,c), -(613,180,o), -(655,323,o), -(672,464,c) +(641,434,l), +(626,305,o), +(587,163,o), +(474,94,c), +(481,90,o), +(492,80,o), +(497,74,c), +(613,150,o), +(655,293,o), +(672,434,c) ); }, { closed = 1; nodes = ( (399,443,l), -(399,3,l), -(883,3,l), -(883,36,l), -(428,36,l), +(399,-37,l), +(883,-37,l), +(883,-4,l), +(428,-4,l), (428,443,l) ); }, @@ -74,8 +75,8 @@ nodes = ( closed = 1; nodes = ( (868,444,l), -(868,-59,l), -(897,-59,l), +(868,-37,l), +(897,-37,l), (897,444,l) ); }, @@ -94,10 +95,10 @@ nodes = ( (95,727,l), (95,698,l), (258,698,l), -(258,229,l), -(95,229,l), -(95,199,l), -(287,199,l), +(258,189,l), +(95,189,l), +(95,159,l), +(287,159,l), (287,727,l) ); }, @@ -105,8 +106,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -147,39 +148,39 @@ nodes = ( { closed = 1; nodes = ( -(616,241,l), -(662,191,o), -(716,122,o), -(739,77,c), -(835,149,l), -(810,194,o), -(752,259,o), -(706,306,c) +(616,231,l), +(662,181,o), +(716,112,o), +(739,67,c), +(835,139,l), +(810,184,o), +(752,249,o), +(706,296,c) ); }, { closed = 1; nodes = ( -(618,450,l), -(609,345,o), -(592,234,o), -(481,166,c), -(509,145,o), -(544,101,o), -(560,70,c), -(700,162,o), -(731,303,o), -(745,450,c) +(618,440,l), +(609,335,o), +(592,224,o), +(481,156,c), +(509,135,o), +(544,91,o), +(560,60,c), +(700,152,o), +(731,293,o), +(745,440,c) ); }, { closed = 1; nodes = ( (372,419,l), -(372,-52,l), -(922,-52,l), -(922,71,l), -(507,71,l), +(372,-72,l), +(922,-72,l), +(922,51,l), +(507,51,l), (507,419,l) ); }, @@ -187,8 +188,8 @@ nodes = ( closed = 1; nodes = ( (818,419,l), -(818,-81,l), -(952,-81,l), +(818,-72,l), +(952,-72,l), (952,419,l) ); }, @@ -207,10 +208,10 @@ nodes = ( (127,773,l), (127,640,l), (212,640,l), -(212,298,l), -(127,298,l), -(127,165,l), -(329,165,l), +(212,238,l), +(127,238,l), +(127,105,l), +(329,105,l), (329,773,l) ); }, @@ -218,8 +219,8 @@ nodes = ( closed = 1; nodes = ( (53,773,l), -(53,80,l), -(166,80,l), +(53,105,l), +(166,105,l), (166,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5575.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5575.glyph index 004373f..de2364e 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5575.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5575.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5575; layers = ( { @@ -39,13 +40,11 @@ nodes = ( (820,194,o), (675,29,o), (525,-45,c), -(532,-51,o), -(541,-62,o), -(545,-68,c), +(545,-68,l), (701,13,o), (847,179,o), (903,437,c), -(884,445,l), +(889,443,l), (878,443,l) ); }, @@ -57,9 +56,7 @@ nodes = ( (523,291,o), (512,93,o), (414,-51,c), -(421,-54,o), -(433,-61,o), -(439,-66,c), +(439,-66,l), (537,81,o), (552,287,o), (552,436,cs), @@ -71,14 +68,10 @@ closed = 1; nodes = ( (905,693,l), (905,686,l), -(883,633,o), -(853,575,o), -(828,537,c), +(828,537,l), (854,524,l), -(881,565,o), -(911,629,o), -(938,686,c), -(917,695,l), +(938,686,l), +(919,693,l), (912,693,l) ); }, @@ -89,9 +82,7 @@ nodes = ( (642,191,o), (750,4,o), (928,-68,c), -(933,-60,o), -(942,-50,o), -(950,-43,c), +(950,-43,l), (773,22,o), (666,207,o), (619,428,c) @@ -142,10 +133,10 @@ nodes = ( (105,729,l), (105,700,l), (250,700,l), -(250,203,l), -(105,203,l), -(105,174,l), -(280,174,l), +(250,163,l), +(105,163,l), +(105,134,l), +(280,134,l), (280,729,l) ); }, @@ -153,8 +144,8 @@ nodes = ( closed = 1; nodes = ( (89,729,l), -(89,63,l), -(119,63,l), +(89,134,l), +(119,134,l), (119,729,l) ); } @@ -200,13 +191,11 @@ nodes = ( (806,252,o), (705,85,o), (560,12,c), -(586,-13,o), -(622,-61,o), -(639,-93,c), +(639,-93,l), (809,8,o), (919,185,o), (963,446,c), -(882,473,l), +(893,469,l), (860,469,l) ); }, @@ -218,9 +207,7 @@ nodes = ( (521,350,o), (514,124,o), (423,-30,c), -(456,-42,o), -(514,-73,o), -(539,-93,c), +(539,-93,l), (634,73,o), (650,333,o), (650,502,cs), @@ -232,14 +219,10 @@ closed = 1; nodes = ( (857,725,l), (857,710,l), -(852,656,o), -(841,590,o), -(832,545,c), +(832,545,l), (928,496,l), -(947,550,o), -(968,630,o), -(982,700,c), -(894,732,l), +(982,700,l), +(920,725,l), (876,725,l) ); }, @@ -250,9 +233,7 @@ nodes = ( (636,173,o), (721,-4,o), (903,-95,c), -(922,-60,o), -(961,-8,o), -(990,17,c), +(990,17,l), (825,86,o), (739,241,o), (699,431,c) @@ -303,10 +284,10 @@ nodes = ( (140,767,l), (140,654,l), (210,654,l), -(210,225,l), -(140,225,l), -(140,111,l), -(335,111,l), +(210,205,l), +(140,205,l), +(140,91,l), +(335,91,l), (335,767,l) ); }, @@ -314,8 +295,8 @@ nodes = ( closed = 1; nodes = ( (55,767,l), -(55,33,l), -(178,33,l), +(55,91,l), +(178,91,l), (178,767,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5576.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5576.glyph index 5f866fa..e736736 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5576.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5576.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5576; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (98,727,l), (98,698,l), (264,698,l), -(264,229,l), -(98,229,l), -(98,199,l), -(293,199,l), +(264,189,l), +(98,189,l), +(98,159,l), +(293,159,l), (293,727,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (87,727,l), -(87,96,l), -(117,96,l), +(87,159,l), +(117,159,l), (117,727,l) ); }, @@ -73,9 +74,7 @@ nodes = ( (433,206,o), (402,33,o), (299,-52,c), -(306,-56,o), -(318,-65,o), -(323,-70,c), +(323,-70,l), (428,21,o), (461,194,o), (474,354,c) @@ -90,12 +89,8 @@ nodes = ( (793,-54,cs), (905,-54,l), (941,-54,l), -(942,-46,o), -(948,-32,o), -(954,-24,c), -(929,-24,o), -(810,-24,o), -(794,-24,cs), +(954,-24,l), +(794,-24,ls), (635,-24,o), (510,16,o), (454,234,c) @@ -127,10 +122,10 @@ nodes = ( (131,773,l), (131,640,l), (240,640,l), -(240,298,l), -(131,298,l), -(131,165,l), -(369,165,l), +(240,248,l), +(131,248,l), +(131,115,l), +(369,115,l), (369,773,l) ); }, @@ -138,8 +133,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(187,80,l), +(59,115,l), +(187,115,l), (187,773,l) ); }, @@ -190,9 +185,7 @@ nodes = ( (425,237,o), (415,93,o), (333,4,c), -(365,-18,o), -(405,-65,o), -(424,-99,c), +(424,-99,l), (530,17,o), (550,195,o), (558,359,c) @@ -207,12 +200,8 @@ nodes = ( (784,-84,cs), (899,-84,l), (935,-84,l), -(940,-47,o), -(958,17,o), -(975,47,c), -(930,45,o), -(826,45,o), -(790,45,cs), +(975,45,l), +(790,45,ls), (682,45,o), (586,63,o), (537,220,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5577.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5577.glyph index 1a1278d..70f775a 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5577.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5577.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni5577; layers = ( { +guides = ( +{ +angle = 207.646; +pos = (586,105); +} +); layerId = m01; shapes = ( { @@ -29,9 +36,7 @@ closed = 1; nodes = ( (911,763,l), (911,759,l), -(885,673,o), -(850,567,o), -(808,455,c), +(808,455,l), (882,347,o), (917,262,o), (917,190,cs), @@ -44,9 +49,7 @@ nodes = ( (834,83,o), (804,83,o), (770,87,c), -(777,78,o), -(782,65,o), -(783,57,c), +(783,57,l), (810,55,o), (840,55,o), (863,57,cs), @@ -59,10 +62,8 @@ nodes = ( (946,265,o), (911,353,o), (839,458,c), -(877,561,o), -(913,664,o), -(941,752,c), -(921,766,l), +(941,752,l), +(927,763,l), (916,763,l) ); }, @@ -95,10 +96,8 @@ nodes = ( { closed = 1; nodes = ( -(361,-20,l), -(375,-6,o), -(397,6,o), -(586,105,c), +(357,-14,l), +(586,105,l), (583,111,o), (579,124,o), (577,131,c), @@ -125,10 +124,10 @@ nodes = ( (95,727,l), (95,698,l), (258,698,l), -(258,229,l), -(95,229,l), -(95,199,l), -(287,199,l), +(258,189,l), +(95,189,l), +(95,159,l), +(287,159,l), (287,727,l) ); }, @@ -136,26 +135,25 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); }, { closed = 1; nodes = ( -(361,-8,o), -(397,26,o), -(397,26,c), +(369,-2,ls), +(386,16,o), +(397,43,o), +(397,68,cs), (397,704,l), (368,704,l), (368,72,ls), (368,31,o), (352,14,o), (342,7,c), -(348,-1,o), -(357,-14,o), -(361,-21,c) +(357,-15,l) ); } ); @@ -163,6 +161,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 202.5074; +pos = (585,52); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -189,10 +193,8 @@ nodes = ( closed = 1; nodes = ( (845,791,l), -(845,781,ls), -(837,688,o), -(824,570,o), -(804,443,c), +(845,781,l), +(804,443,l), (843,346,o), (855,292,o), (855,241,cs), @@ -205,9 +207,7 @@ nodes = ( (816,161,o), (805,161,o), (795,162,c), -(813,129,o), -(822,80,o), -(822,47,c), +(822,47,l), (842,47,o), (861,47,o), (875,50,cs), @@ -220,10 +220,8 @@ nodes = ( (974,294,o), (956,361,o), (913,459,c), -(936,566,o), -(955,665,o), -(970,751,c), -(879,795,l), +(970,751,l), +(887,791,l), (863,791,l) ); }, @@ -256,10 +254,8 @@ nodes = ( { closed = 1; nodes = ( -(347,-63,l), -(368,-44,o), -(404,-23,o), -(585,52,c), +(339,-50,l), +(585,52,l), (576,79,o), (565,129,o), (561,165,c), @@ -286,10 +282,10 @@ nodes = ( (127,773,l), (127,640,l), (209,640,l), -(209,298,l), -(127,298,l), -(127,165,l), -(320,165,l), +(209,238,l), +(127,238,l), +(127,105,l), +(320,105,l), (320,773,l) ); }, @@ -297,26 +293,25 @@ nodes = ( closed = 1; nodes = ( (53,773,l), -(53,80,l), -(164,80,l), +(53,105,l), +(164,105,l), (164,773,l) ); }, { closed = 1; nodes = ( -(347,-17,o), -(468,77,o), -(468,77,c), +(387,-15,ls), +(434,18,o), +(468,81,o), +(468,139,cs), (468,726,l), (345,726,l), (345,144,ls), (345,88,o), (307,46,o), (282,27,c), -(302,9,o), -(336,-37,o), -(347,-62,c) +(339,-49,l) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5578.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5578.glyph index c44e8ee..17af5af 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5578.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5578.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5578; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (100,748,l), (100,719,l), (260,719,l), -(260,222,l), -(100,222,l), -(100,192,l), -(289,192,l), +(260,182,l), +(100,182,l), +(100,152,l), +(289,152,l), (289,748,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (84,748,l), -(84,82,l), -(114,82,l), +(84,152,l), +(114,152,l), (114,748,l) ); }, @@ -74,9 +75,7 @@ nodes = ( (378,195,o), (370,57,o), (282,-54,c), -(290,-59,o), -(301,-66,o), -(307,-73,c), +(307,-73,l), (397,44,o), (407,185,o), (407,296,cs), @@ -90,9 +89,7 @@ nodes = ( (493,200,o), (470,107,o), (428,41,c), -(436,37,o), -(448,28,o), -(453,24,c), +(453,24,l), (493,91,o), (522,190,o), (537,292,c) @@ -124,10 +121,10 @@ nodes = ( (127,799,l), (127,686,l), (215,686,l), -(215,257,l), -(127,257,l), -(127,143,l), -(327,143,l), +(215,217,l), +(127,217,l), +(127,103,l), +(327,103,l), (327,799,l) ); }, @@ -135,8 +132,8 @@ nodes = ( closed = 1; nodes = ( (55,799,l), -(55,65,l), -(168,65,l), +(55,103,l), +(168,103,l), (168,799,l) ); }, @@ -188,9 +185,7 @@ nodes = ( (352,182,o), (344,70,o), (284,-21,c), -(316,-37,o), -(364,-73,o), -(387,-97,c), +(387,-97,l), (460,14,o), (468,155,o), (468,269,cs), @@ -204,9 +199,7 @@ nodes = ( (485,226,o), (471,110,o), (446,35,c), -(467,24,o), -(505,1,o), -(521,-12,c), +(521,-12,l), (549,70,o), (569,198,o), (580,316,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni557B_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni557B_.glyph index 03a265e..758808e 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni557B_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni557B_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni557B; layers = ( { @@ -7,22 +8,22 @@ shapes = ( { closed = 1; nodes = ( -(205,18,l), -(205,-12,l), -(801,-12,l), -(801,18,l) +(205,-22,l), +(205,-52,l), +(801,-52,l), +(801,-22,l) ); }, { closed = 1; nodes = ( (187,196,l), -(187,-68,l), -(217,-68,l), +(187,-52,l), +(217,-52,l), (217,167,l), (789,167,l), -(789,-64,l), -(819,-64,l), +(789,-52,l), +(819,-52,l), (819,196,l) ); }, @@ -105,9 +106,7 @@ nodes = ( (741,287,o), (700,287,o), (641,288,c), -(647,279,o), -(652,270,o), -(654,261,c), +(654,261,l), (721,261,o), (758,261,o), (777,267,cs), @@ -140,22 +139,22 @@ shapes = ( { closed = 1; nodes = ( -(224,51,l), -(224,-61,l), -(778,-61,l), -(778,51,l) +(224,31,l), +(224,-81,l), +(778,-81,l), +(778,31,l) ); }, { closed = 1; nodes = ( (146,217,l), -(146,-91,l), -(295,-91,l), +(146,-81,l), +(295,-81,l), (295,102,l), (702,102,l), -(702,-82,l), -(859,-82,l), +(702,-81,l), +(859,-81,l), (859,217,l) ); }, @@ -238,9 +237,7 @@ nodes = ( (664,350,o), (622,350,o), (594,352,c), -(608,321,o), -(624,279,o), -(630,244,c), +(630,244,l), (691,244,o), (742,244,o), (781,260,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni557C_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni557C_.glyph index 021d768..1b5a8de 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni557C_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni557C_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni557C; layers = ( { @@ -83,9 +84,7 @@ nodes = ( (824,55,o), (789,55,o), (738,56,c), -(743,47,o), -(748,36,o), -(750,28,c), +(750,28,l), (805,28,o), (840,28,o), (859,33,cs), @@ -114,10 +113,10 @@ nodes = ( (95,727,l), (95,698,l), (270,698,l), -(270,229,l), -(95,229,l), -(95,199,l), -(299,199,l), +(270,189,l), +(95,189,l), +(95,159,l), +(299,159,l), (299,727,l) ); }, @@ -125,8 +124,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -216,9 +215,7 @@ nodes = ( (768,133,o), (746,133,o), (728,134,c), -(742,101,o), -(757,51,o), -(761,15,c), +(761,15,l), (806,15,o), (842,17,o), (873,37,cs), @@ -247,10 +244,10 @@ nodes = ( (138,773,l), (138,640,l), (235,640,l), -(235,298,l), -(138,298,l), -(138,165,l), -(361,165,l), +(235,248,l), +(138,248,l), +(138,115,l), +(361,115,l), (361,773,l) ); }, @@ -258,8 +255,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(186,80,l), +(59,115,l), +(186,115,l), (186,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni557E_.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni557E_.glyph index 3176494..ef1e898 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni557E_.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni557E_.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni557E; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (101,751,l), (101,721,l), (255,721,l), -(255,225,l), -(101,225,l), -(101,195,l), -(283,195,l), +(255,185,l), +(101,185,l), +(101,155,l), +(283,155,l), (283,751,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (90,751,l), -(90,84,l), -(119,84,l), +(90,155,l), +(119,155,l), (119,751,l) ); }, @@ -51,9 +52,7 @@ nodes = ( (525,789,o), (416,765,o), (324,749,c), -(328,742,o), -(332,732,o), -(334,725,c), +(334,725,l), (429,740,o), (540,764,o), (612,792,c) @@ -66,9 +65,7 @@ nodes = ( (423,368,o), (349,194,o), (283,110,c), -(290,105,o), -(299,94,o), -(305,86,c), +(305,86,l), (374,177,o), (446,359,o), (480,504,c) @@ -121,9 +118,7 @@ nodes = ( (752,397,o), (739,150,o), (580,-57,c), -(589,-60,o), -(600,-67,o), -(605,-73,c), +(605,-73,l), (767,137,o), (781,389,o), (781,606,cs), @@ -137,9 +132,7 @@ nodes = ( (775,264,o), (822,34,o), (929,-65,c), -(935,-57,o), -(945,-47,o), -(953,-42,c), +(953,-42,l), (848,47,o), (800,277,o), (779,520,c) @@ -158,10 +151,10 @@ nodes = ( (122,791,l), (122,678,l), (195,678,l), -(195,249,l), -(122,249,l), -(122,135,l), -(305,135,l), +(195,209,l), +(122,209,l), +(122,95,l), +(305,95,l), (305,791,l) ); }, @@ -169,8 +162,8 @@ nodes = ( closed = 1; nodes = ( (55,791,l), -(55,57,l), -(164,57,l), +(55,95,l), +(164,95,l), (164,791,l) ); }, @@ -199,9 +192,7 @@ nodes = ( (503,818,o), (403,793,o), (312,779,c), -(327,750,o), -(344,703,o), -(349,674,c), +(349,674,l), (447,685,o), (563,705,o), (656,739,c) @@ -214,9 +205,7 @@ nodes = ( (386,403,o), (340,261,o), (284,176,c), -(305,141,o), -(335,87,o), -(347,47,c), +(347,47,l), (415,150,o), (462,339,o), (486,492,c) @@ -269,9 +258,7 @@ nodes = ( (723,390,o), (708,170,o), (577,11,c), -(602,-11,o), -(642,-64,o), -(659,-96,c), +(659,-96,l), (825,96,o), (844,352,o), (844,560,cs), @@ -285,9 +272,7 @@ nodes = ( (753,239,o), (783,27,o), (899,-88,c), -(917,-52,o), -(959,1,o), -(986,25,c), +(986,25,l), (882,110,o), (850,295,o), (835,493,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5580.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5580.glyph index b6ff525..029d79a 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5580.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5580.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5580; layers = ( { @@ -21,22 +22,22 @@ nodes = ( closed = 1; nodes = ( (463,227,l), -(463,-71,l), -(492,-71,l), +(463,-57,l), +(492,-57,l), (492,197,l), (804,197,l), -(804,-68,l), -(833,-68,l), +(804,-57,l), +(833,-57,l), (833,227,l) ); }, { closed = 1; nodes = ( -(477,-8,l), -(477,-37,l), -(826,-37,l), -(826,-8,l) +(477,-28,l), +(477,-57,l), +(826,-57,l), +(826,-28,l) ); }, { @@ -46,9 +47,7 @@ nodes = ( (542,585,o), (473,493,o), (368,429,c), -(375,425,o), -(384,419,o), -(389,412,c), +(389,412,l), (498,480,o), (567,573,o), (603,657,c) @@ -71,13 +70,11 @@ nodes = ( (728,405,o), (533,292,o), (342,236,c), -(349,230,o), -(358,219,o), -(362,211,c), +(362,211,l), (555,273,o), (754,387,o), (844,570,c), -(825,582,l), +(827,580,l), (819,580,l) ); }, @@ -101,9 +98,7 @@ nodes = ( (586,389,o), (760,272,o), (943,215,c), -(945,224,o), -(951,234,o), -(956,241,c), +(956,241,l), (775,291,o), (606,406,o), (528,546,c) @@ -115,10 +110,10 @@ nodes = ( (103,734,l), (103,705,l), (286,705,l), -(286,169,l), -(103,169,l), -(103,139,l), -(316,139,l), +(286,129,l), +(103,129,l), +(103,99,l), +(316,99,l), (316,734,l) ); }, @@ -126,8 +121,8 @@ nodes = ( closed = 1; nodes = ( (87,734,l), -(87,37,l), -(117,37,l), +(87,99,l), +(117,99,l), (117,734,l) ); } @@ -155,22 +150,22 @@ nodes = ( closed = 1; nodes = ( (424,216,l), -(424,-92,l), -(550,-92,l), +(424,-87,l), +(550,-87,l), (550,105,l), (759,105,l), -(759,-92,l), -(891,-92,l), +(759,-87,l), +(891,-87,l), (891,216,l) ); }, { closed = 1; nodes = ( -(503,44,l), -(503,-67,l), -(828,-67,l), -(828,44,l) +(503,24,l), +(503,-87,l), +(828,-87,l), +(828,24,l) ); }, { @@ -180,9 +175,7 @@ nodes = ( (503,572,o), (442,499,o), (342,446,c), -(369,427,o), -(408,382,o), -(426,353,c), +(426,353,l), (543,426,o), (614,515,o), (663,621,c) @@ -205,13 +198,11 @@ nodes = ( (710,412,o), (535,329,o), (329,296,c), -(354,270,o), -(392,212,o), -(406,179,c), +(406,179,l), (621,227,o), (816,333,o), (908,530,c), -(824,581,l), +(834,577,l), (802,577,l) ); }, @@ -235,9 +226,7 @@ nodes = ( (570,312,o), (750,228,o), (940,188,c), -(947,225,o), -(965,284,o), -(984,319,c), +(984,319,l), (812,340,o), (649,400,o), (565,489,c) @@ -249,10 +238,10 @@ nodes = ( (146,774,l), (146,652,l), (228,652,l), -(228,229,l), -(146,229,l), -(146,106,l), -(342,106,l), +(228,189,l), +(146,189,l), +(146,66,l), +(342,66,l), (342,774,l) ); }, @@ -260,8 +249,8 @@ nodes = ( closed = 1; nodes = ( (59,774,l), -(59,40,l), -(179,40,l), +(59,66,l), +(179,66,l), (179,774,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5581.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5581.glyph index 79eb306..6969396 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5581.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5581.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5581; layers = ( { @@ -10,10 +11,10 @@ nodes = ( (98,726,l), (98,697,l), (276,697,l), -(276,252,l), -(98,252,l), -(98,223,l), -(305,223,l), +(276,212,l), +(98,212,l), +(98,183,l), +(305,183,l), (305,726,l) ); }, @@ -21,8 +22,8 @@ nodes = ( closed = 1; nodes = ( (84,726,l), -(84,131,l), -(113,131,l), +(84,183,l), +(113,183,l), (113,726,l) ); }, @@ -110,9 +111,7 @@ nodes = ( (858,-43,o), (819,-43,o), (768,-41,c), -(772,-51,o), -(777,-63,o), -(779,-70,c), +(779,-70,l), (837,-70,o), (873,-71,o), (891,-65,cs), @@ -135,10 +134,10 @@ nodes = ( (131,763,l), (131,632,l), (222,632,l), -(222,305,l), -(131,305,l), -(131,173,l), -(344,173,l), +(222,245,l), +(131,245,l), +(131,113,l), +(344,113,l), (344,763,l) ); }, @@ -146,8 +145,8 @@ nodes = ( closed = 1; nodes = ( (59,763,l), -(59,92,l), -(180,92,l), +(59,113,l), +(180,113,l), (180,763,l) ); }, @@ -235,9 +234,7 @@ nodes = ( (794,23,o), (756,23,o), (725,25,c), -(741,-8,o), -(759,-60,o), -(763,-96,c), +(763,-96,l), (823,-96,o), (868,-94,o), (905,-74,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5582.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5582.glyph index 509edaa..1e9be23 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5582.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5582.glyph @@ -1,19 +1,22 @@ { +color = 4; glyphname = uni5582; layers = ( { +guides = ( +{ +angle = 196.4659; +pos = (681,2); +} +); layerId = m01; shapes = ( { closed = 1; nodes = ( -(440,-76,l), -(454,-65,o), -(478,-58,o), -(681,2,c), -(679,9,o), -(678,22,o), -(678,30,c), +(437,-70,l), +(681,2,l), +(678,30,l), (462,-29,l), (440,-47,l) ); @@ -24,10 +27,10 @@ nodes = ( (107,727,l), (107,698,l), (270,698,l), -(270,229,l), -(107,229,l), -(107,199,l), -(299,199,l), +(270,189,l), +(107,189,l), +(107,159,l), +(299,159,l), (299,727,l) ); }, @@ -35,26 +38,25 @@ nodes = ( closed = 1; nodes = ( (92,727,l), -(92,96,l), -(122,96,l), +(92,159,l), +(122,159,l), (122,727,l) ); }, { closed = 1; nodes = ( -(440,-62,o), -(482,-36,o), -(482,-36,c), +(448,-61,ls), +(468,-45,o), +(482,-17,o), +(482,8,cs), (482,313,l), (453,313,l), (453,10,ls), (453,-27,o), (434,-41,o), (424,-46,c), -(429,-54,o), -(437,-67,o), -(440,-76,c) +(437,-70,l) ); }, { @@ -109,9 +111,7 @@ nodes = ( (671,123,o), (783,-15,o), (942,-75,c), -(947,-67,o), -(955,-57,o), -(963,-51,c), +(963,-51,l), (804,2,o), (693,137,o), (644,311,c) @@ -135,18 +135,20 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 190.8403; +pos = (684,-35); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { closed = 1; nodes = ( -(429,-98,l), -(455,-83,o), -(496,-71,o), -(684,-35,c), -(682,-4,o), -(684,52,o), -(689,91,c), +(424,-85,l), +(684,-35,l), +(689,91,l), (477,58,l), (419,17,l) ); @@ -157,10 +159,10 @@ nodes = ( (142,773,l), (142,640,l), (231,640,l), -(231,298,l), -(142,298,l), -(142,165,l), -(359,165,l), +(231,238,l), +(142,238,l), +(142,105,l), +(359,105,l), (359,773,l) ); }, @@ -168,26 +170,25 @@ nodes = ( closed = 1; nodes = ( (64,773,l), -(64,80,l), -(194,80,l), +(64,105,l), +(194,105,l), (194,773,l) ); }, { closed = 1; nodes = ( -(429,-49,o), -(567,23,o), -(567,23,c), +(473,-58,ls), +(531,-26,o), +(567,50,o), +(567,116,cs), (567,338,l), (430,338,l), (430,124,ls), (430,78,o), (404,52,o), (380,40,c), -(400,9,o), -(422,-60,o), -(429,-98,c) +(424,-85,l) ); }, { @@ -242,9 +243,7 @@ nodes = ( (671,107,o), (747,-33,o), (900,-104,c), -(919,-68,o), -(959,-15,o), -(989,12,c), +(989,12,l), (856,63,o), (781,177,o), (746,318,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5583.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5583.glyph index 4adc5ea..daf5360 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5583.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5583.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5583; layers = ( { @@ -62,9 +63,7 @@ nodes = ( (860,-39,o), (819,-39,o), (769,-38,c), -(773,-47,o), -(779,-60,o), -(781,-68,c), +(781,-68,l), (839,-68,o), (874,-68,o), (893,-63,cs), @@ -119,10 +118,10 @@ nodes = ( (98,734,l), (98,705,l), (261,705,l), -(261,199,l), -(98,199,l), -(98,170,l), -(290,170,l), +(261,159,l), +(98,159,l), +(98,130,l), +(290,130,l), (290,734,l) ); }, @@ -130,8 +129,8 @@ nodes = ( closed = 1; nodes = ( (76,733,l), -(76,93,l), -(105,93,l), +(76,130,l), +(105,130,l), (105,733,l) ); } @@ -200,9 +199,7 @@ nodes = ( (804,28,o), (776,28,o), (753,29,c), -(770,-4,o), -(786,-60,o), -(791,-96,c), +(791,-96,l), (844,-96,o), (885,-93,o), (919,-72,cs), @@ -257,10 +254,10 @@ nodes = ( (136,771,l), (136,631,l), (218,631,l), -(218,301,l), -(136,301,l), -(136,161,l), -(338,161,l), +(218,241,l), +(136,241,l), +(136,101,l), +(338,101,l), (338,771,l) ); }, @@ -268,8 +265,8 @@ nodes = ( closed = 1; nodes = ( (52,771,l), -(52,78,l), -(173,78,l), +(52,101,l), +(173,101,l), (173,771,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5584.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5584.glyph index 2964957..905d3f7 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5584.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5584.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5584; layers = ( { @@ -7,22 +8,22 @@ shapes = ( { closed = 1; nodes = ( -(219,-3,l), -(219,-32,l), -(793,-32,l), -(793,-3,l) +(219,-33,l), +(219,-62,l), +(793,-62,l), +(793,-33,l) ); }, { closed = 1; nodes = ( (202,194,l), -(202,-70,l), -(231,-70,l), +(202,-62,l), +(231,-62,l), (231,165,l), (778,165,l), -(778,-67,l), -(808,-67,l), +(778,-62,l), +(808,-62,l), (808,194,l) ); }, @@ -133,22 +134,22 @@ shapes = ( { closed = 1; nodes = ( -(239,43,l), -(239,-67,l), -(753,-67,l), -(753,43,l) +(239,23,l), +(239,-87,l), +(753,-87,l), +(753,23,l) ); }, { closed = 1; nodes = ( (158,188,l), -(158,-95,l), -(301,-95,l), +(158,-87,l), +(301,-87,l), (301,79,l), (697,79,l), -(697,-92,l), -(847,-92,l), +(697,-87,l), +(847,-87,l), (847,188,l) ); }, diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5587.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5587.glyph index ec73ec5..ab20920 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5587.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5587.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5587; layers = ( { @@ -60,9 +61,7 @@ nodes = ( (430,194,o), (340,69,o), (259,8,c), -(266,2,o), -(274,-10,o), -(279,-17,c), +(279,-17,l), (363,48,o), (453,180,o), (500,301,c) @@ -101,9 +100,7 @@ nodes = ( (842,-35,o), (793,-35,o), (737,-34,c), -(742,-43,o), -(747,-58,o), -(750,-66,c), +(750,-66,l), (814,-66,o), (855,-66,o), (875,-61,cs), @@ -119,10 +116,10 @@ nodes = ( (95,727,l), (95,698,l), (246,698,l), -(246,229,l), -(95,229,l), -(95,199,l), -(276,199,l), +(246,189,l), +(95,189,l), +(95,159,l), +(276,159,l), (276,727,l) ); }, @@ -130,8 +127,8 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); } @@ -198,9 +195,7 @@ nodes = ( (404,230,o), (331,125,o), (254,66,c), -(274,31,o), -(303,-24,o), -(314,-62,c), +(314,-62,l), (403,14,o), (478,157,o), (524,281,c) @@ -239,9 +234,7 @@ nodes = ( (785,33,o), (740,33,o), (692,35,c), -(711,0,o), -(733,-61,o), -(738,-97,c), +(738,-97,l), (808,-97,o), (861,-91,o), (898,-69,cs), @@ -257,10 +250,10 @@ nodes = ( (122,773,l), (122,640,l), (201,640,l), -(201,298,l), -(122,298,l), -(122,165,l), -(306,165,l), +(201,268,l), +(122,268,l), +(122,135,l), +(306,135,l), (306,773,l) ); }, @@ -268,8 +261,8 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(166,80,l), +(59,135,l), +(166,135,l), (166,773,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5588.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5588.glyph index db9ffd7..413e17a 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5588.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5588.glyph @@ -1,7 +1,14 @@ { +color = 4; glyphname = uni5588; layers = ( { +guides = ( +{ +angle = 195.6748; +pos = (629,471); +} +); layerId = m01; shapes = ( { @@ -27,9 +34,7 @@ nodes = ( (939,425,o), (949,450,o), (952,554,c), -(943,556,o), -(931,561,o), -(923,567,c), +(923,567,l), (920,469,o), (916,454,o), (884,454,cs), @@ -72,43 +77,39 @@ nodes = ( closed = 1; nodes = ( (422,325,l), -(422,-73,l), -(451,-73,l), +(422,-63,l), +(451,-63,l), (451,295,l), (854,295,l), -(854,-69,l), -(883,-69,l), +(854,-63,l), +(883,-63,l), (883,325,l) ); }, { closed = 1; nodes = ( -(434,166,l), -(434,136,l), -(869,136,l), -(869,166,l) +(434,148,l), +(434,118,l), +(869,118,l), +(869,148,l) ); }, { closed = 1; nodes = ( -(434,1,l), -(434,-28,l), -(866,-28,l), -(866,1,l) +(434,-34,l), +(434,-63,l), +(866,-63,l), +(866,-34,l) ); }, { closed = 1; nodes = ( -(397,398,l), -(411,408,o), -(433,416,o), -(629,471,c), -(628,476,o), -(627,488,o), -(627,496,c), +(393,405,l), +(629,471,l), +(627,496,l), (418,441,l), (397,425,l) ); @@ -119,10 +120,10 @@ nodes = ( (95,727,l), (95,698,l), (276,698,l), -(276,229,l), -(95,229,l), -(95,199,l), -(305,199,l), +(276,189,l), +(95,189,l), +(95,159,l), +(305,159,l), (305,727,l) ); }, @@ -130,26 +131,25 @@ nodes = ( closed = 1; nodes = ( (84,727,l), -(84,96,l), -(114,96,l), +(84,159,l), +(114,159,l), (114,727,l) ); }, { closed = 1; nodes = ( -(397,412,o), -(442,438,o), -(442,438,c), +(410,414,ls), +(432,426,o), +(442,456,o), +(442,481,cs), (442,823,l), (413,823,l), (413,484,ls), (413,447,o), (392,433,o), (380,428,c), -(386,420,o), -(394,406,o), -(397,398,c) +(393,405,l) ); } ); @@ -157,6 +157,12 @@ vertWidth = 1000; width = 1000; }, { +guides = ( +{ +angle = 193.679; +pos = (644,444); +} +); layerId = "5029AEDF-C899-4409-998A-C73D58F94579"; shapes = ( { @@ -182,9 +188,7 @@ nodes = ( (924,393,o), (958,430,o), (970,553,c), -(933,562,o), -(878,583,o), -(851,604,c), +(851,604,l), (849,528,o), (845,513,o), (831,513,cs), @@ -227,43 +231,39 @@ nodes = ( closed = 1; nodes = ( (401,344,l), -(401,-96,l), -(539,-96,l), +(401,-87,l), +(539,-87,l), (539,233,l), (770,233,l), -(770,-92,l), -(915,-92,l), +(770,-87,l), +(915,-87,l), (915,344,l) ); }, { closed = 1; nodes = ( -(467,191,l), -(467,88,l), -(864,88,l), -(864,191,l) +(467,181,l), +(467,78,l), +(864,78,l), +(864,181,l) ); }, { closed = 1; nodes = ( -(467,44,l), -(467,-67,l), -(864,-67,l), -(864,44,l) +(467,24,l), +(467,-87,l), +(864,-87,l), +(864,24,l) ); }, { closed = 1; nodes = ( -(391,365,l), -(416,382,o), -(455,398,o), -(644,444,c), -(638,473,o), -(632,525,o), -(631,562,c), +(383,380,l), +(644,444,l), +(631,562,l), (431,522,l), (379,481,l) ); @@ -274,10 +274,10 @@ nodes = ( (133,773,l), (133,640,l), (221,640,l), -(221,298,l), -(133,298,l), -(133,165,l), -(350,165,l), +(221,238,l), +(133,238,l), +(133,105,l), +(350,105,l), (350,773,l) ); }, @@ -285,26 +285,25 @@ nodes = ( closed = 1; nodes = ( (59,773,l), -(59,80,l), -(186,80,l), +(59,105,l), +(186,105,l), (186,773,l) ); }, { closed = 1; nodes = ( -(391,410,o), -(528,490,o), -(528,490,c), +(431,410,ls), +(480,441,o), +(528,495,o), +(528,553,cs), (528,843,l), (388,843,l), (388,561,ls), (388,511,o), (359,482,o), (335,467,c), -(355,445,o), -(382,394,o), -(391,365,c) +(383,380,l) ); } ); diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5589.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5589.glyph index 839dd9d..bd2074a 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5589.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni5589.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni5589; layers = ( { @@ -11,9 +12,7 @@ nodes = ( (454,696,o), (382,533,o), (280,429,c), -(288,425,o), -(299,416,o), -(305,411,c), +(305,411,l), (408,519,o), (480,684,o), (521,824,c) @@ -26,9 +25,7 @@ nodes = ( (569,477,o), (526,372,o), (468,304,c), -(476,300,o), -(486,293,o), -(492,288,c), +(492,288,l), (551,358,o), (596,467,o), (619,553,c) @@ -77,9 +74,7 @@ nodes = ( (736,86,o), (815,-23,o), (946,-71,c), -(950,-63,o), -(959,-53,o), -(966,-47,c), +(966,-47,l), (836,-7,o), (761,100,o), (730,242,c) @@ -89,15 +84,11 @@ nodes = ( closed = 1; nodes = ( (828,785,l), -(828,779,ls), -(825,734,o), -(817,646,o), -(808,587,c), +(828,779,l), +(808,587,l), (837,584,l), -(846,645,o), -(854,723,o), -(858,784,c), -(837,788,l), +(858,785,l), +(841,785,l), (831,785,l) ); }, @@ -109,9 +100,7 @@ nodes = ( (693,196,o), (677,51,o), (449,-46,c), -(455,-52,o), -(464,-63,o), -(468,-69,c), +(468,-69,l), (704,36,o), (722,187,o), (722,298,cs), @@ -134,10 +123,10 @@ nodes = ( (100,754,l), (100,724,l), (266,724,l), -(266,225,l), -(100,225,l), -(100,195,l), -(295,195,l), +(266,185,l), +(100,185,l), +(100,155,l), +(295,155,l), (295,754,l) ); }, @@ -145,8 +134,8 @@ nodes = ( closed = 1; nodes = ( (84,754,l), -(84,96,l), -(114,96,l), +(84,155,l), +(114,155,l), (114,754,l) ); } @@ -164,9 +153,7 @@ nodes = ( (408,733,o), (341,583,o), (253,498,c), -(278,470,o), -(316,415,o), -(334,383,c), +(334,383,l), (444,489,o), (527,659,o), (579,814,c) @@ -179,9 +166,7 @@ nodes = ( (585,454,o), (552,373,o), (501,326,c), -(528,311,o), -(572,279,o), -(596,258,c), +(596,258,l), (655,314,o), (697,410,o), (722,496,c) @@ -230,9 +215,7 @@ nodes = ( (749,52,o), (808,-47,o), (908,-96,c), -(926,-64,o), -(962,-18,o), -(990,6,c), +(990,6,l), (904,39,o), (845,110,o), (816,192,c) @@ -242,15 +225,11 @@ nodes = ( closed = 1; nodes = ( (772,808,l), -(772,794,ls), -(769,741,o), -(760,647,o), -(749,572,c), +(772,794,l), +(749,572,l), (879,561,l), -(889,632,o), -(899,718,o), -(904,805,c), -(807,813,l), +(904,808,l), +(852,808,l), (786,808,l) ); }, @@ -262,9 +241,7 @@ nodes = ( (686,176,o), (668,64,o), (504,-5,c), -(534,-28,o), -(574,-69,o), -(592,-97,c), +(592,-97,l), (777,-3,o), (815,138,o), (815,248,cs), @@ -287,10 +264,10 @@ nodes = ( (132,792,l), (132,663,l), (202,663,l), -(202,274,l), -(132,274,l), -(132,146,l), -(311,146,l), +(202,214,l), +(132,214,l), +(132,86,l), +(311,86,l), (311,792,l) ); }, @@ -298,8 +275,8 @@ nodes = ( closed = 1; nodes = ( (56,792,l), -(56,58,l), -(163,58,l), +(56,86,l), +(163,86,l), (163,792,l) ); } diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni65B_0.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni65B_0.glyph index 66ae48c..9ce17fd 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni65B_0.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni65B_0.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni65B0; layers = ( { @@ -114,9 +115,7 @@ nodes = ( (251,-16,o), (222,-16,o), (182,-15,c), -(188,-24,o), -(193,-37,o), -(195,-45,c), +(195,-45,l), (238,-45,o), (267,-45,o), (282,-39,cs), @@ -134,9 +133,7 @@ nodes = ( (558,262,o), (548,84,o), (453,-44,c), -(460,-48,o), -(471,-57,o), -(476,-64,c), +(476,-64,l), (574,70,o), (586,258,o), (586,399,cs), @@ -163,9 +160,7 @@ nodes = ( (135,177,o), (100,109,o), (56,60,c), -(64,56,o), -(77,46,o), -(83,41,c), +(83,41,l), (124,91,o), (164,166,o), (187,239,c) @@ -288,9 +283,7 @@ nodes = ( (191,36,o), (158,36,o), (131,37,c), -(147,4,o), -(164,-46,o), -(168,-80,c), +(168,-80,l), (225,-80,o), (268,-78,o), (303,-59,cs), @@ -308,9 +301,7 @@ nodes = ( (545,275,o), (540,113,o), (472,5,c), -(502,-11,o), -(561,-56,o), -(584,-81,c), +(584,-81,l), (667,43,o), (680,253,o), (680,401,cs), @@ -337,9 +328,7 @@ nodes = ( (83,169,o), (53,116,o), (18,80,c), -(44,64,o), -(89,31,o), -(110,13,c), +(110,13,l), (148,56,o), (187,126,o), (211,190,c) diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni6E_90.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni6E_90.glyph index 85794c2..3da2908 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni6E_90.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni6E_90.glyph @@ -1,4 +1,5 @@ { +color = 4; glyphname = uni6E90; layers = ( { @@ -21,9 +22,7 @@ nodes = ( (346,346,o), (334,120,o), (219,-46,c), -(226,-49,o), -(238,-56,o), -(243,-62,c), +(243,-62,l), (361,107,o), (376,342,o), (376,513,cs), @@ -64,9 +63,7 @@ nodes = ( (477,137,o), (427,66,o), (375,15,c), -(382,10,o), -(396,1,o), -(401,-4,c), +(401,-4,l), (451,48,o), (504,127,o), (540,201,c) @@ -109,9 +106,7 @@ nodes = ( (626,-44,o), (580,-45,o), (520,-43,c), -(525,-52,o), -(529,-63,o), -(531,-70,c), +(531,-70,l), (602,-71,o), (642,-71,o), (662,-65,cs), @@ -184,9 +179,7 @@ nodes = ( (326,361,o), (317,132,o), (205,-21,c), -(240,-36,o), -(302,-75,o), -(328,-98,c), +(328,-98,l), (448,68,o), (467,342,o), (467,522,cs), @@ -227,9 +220,7 @@ nodes = ( (473,140,o), (436,70,o), (401,24,c), -(433,8,o), -(487,-24,o), -(514,-45,c), +(514,-45,l), (548,7,o), (594,92,o), (623,163,c) @@ -272,9 +263,7 @@ nodes = ( (610,29,o), (571,29,o), (543,30,c), -(558,-5,o), -(574,-57,o), -(579,-94,c), +(579,-94,l), (639,-95,o), (687,-93,o), (726,-74,cs), diff --git a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni9E_D_1.glyph b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni9E_D_1.glyph index 0d6bec6..04921e0 100644 --- a/src/NeoHanSans-Variable.glyphspackage/glyphs/uni9E_D_1.glyph +++ b/src/NeoHanSans-Variable.glyphspackage/glyphs/uni9E_D_1.glyph @@ -1,4 +1,5 @@ { +color = 7; glyphname = uni9ED1; layers = ( { diff --git a/src/NeoHanSans-Variable.glyphspackage/order.plist b/src/NeoHanSans-Variable.glyphspackage/order.plist index 47d9247..04ab13d 100644 --- a/src/NeoHanSans-Variable.glyphspackage/order.plist +++ b/src/NeoHanSans-Variable.glyphspackage/order.plist @@ -6763,6 +6763,7 @@ uni9F9B, uni9F9F, uni9FA0, space, -.notdef, -"space-han" +nbspace, +"space-han", +.notdef ) \ No newline at end of file