├── .gitignore ├── Comb.glyphsFilter └── Contents │ ├── Info.plist │ ├── MacOS │ ├── plugin │ └── python │ ├── PkgInfo │ └── Resources │ ├── IBdialog.nib │ ├── IBdialog.xib │ ├── __boot__.py │ ├── __error__.sh │ ├── glyphmonkey.py │ ├── plugin.py │ └── site.py ├── LICENSE ├── ShowPathArea.glyphsReporter └── Contents │ ├── Info.plist │ ├── MacOS │ ├── main.py │ └── plugin │ ├── PkgInfo │ └── Resources │ └── plugin.py ├── ShowSymmetries.glyphsReporter └── Contents │ ├── Info.plist │ ├── MacOS │ ├── ShowSymmetries │ └── python │ ├── PkgInfo │ └── Resources │ ├── ShowSymmetries.py │ ├── __boot__.py │ ├── __error__.sh │ ├── glyphmonkey.py │ ├── glyphmonkey.pyc │ ├── reflectional.png │ ├── reflecty.png │ ├── rotational.png │ └── site.py ├── Springs.README.md ├── Springs.glyphsTool └── Contents │ ├── Info.plist │ ├── MacOS │ ├── main.py │ └── plugin │ ├── PkgInfo │ └── Resources │ ├── TTSolver.py │ ├── cassowary │ ├── LICENSE │ ├── __init__.py │ ├── edit_info.py │ ├── error.py │ ├── expression.py │ ├── simplex_solver.py │ ├── tableau.py │ └── utils.py │ ├── plugin.py │ ├── singleConstraintView.nib │ ├── singleConstraintView.xib │ ├── singleConstraintViewController.py │ └── toolbar.pdf ├── TunniLines.glyphsReporter └── Contents │ ├── Info.plist │ ├── MacOS │ ├── main.py │ └── plugin │ ├── PkgInfo │ └── Resources │ ├── glyphmonkey.py │ └── plugin.py ├── springs-e-1.png ├── springs-e-2.png ├── springs-e-3.png ├── springs-m-1.png ├── springs-m-2.png ├── springs-m-3.png ├── springs-m-4.png └── springs-m-5.png /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | -------------------------------------------------------------------------------- /Comb.glyphsFilter/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Comb.glyphsFilter/Contents/Info.plist -------------------------------------------------------------------------------- /Comb.glyphsFilter/Contents/MacOS/plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Comb.glyphsFilter/Contents/MacOS/plugin -------------------------------------------------------------------------------- /Comb.glyphsFilter/Contents/MacOS/python: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.6/bin/python -------------------------------------------------------------------------------- /Comb.glyphsFilter/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | BNDL???? -------------------------------------------------------------------------------- /Comb.glyphsFilter/Contents/Resources/IBdialog.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Comb.glyphsFilter/Contents/Resources/IBdialog.nib -------------------------------------------------------------------------------- /Comb.glyphsFilter/Contents/Resources/IBdialog.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Comb.glyphsFilter/Contents/Resources/IBdialog.xib -------------------------------------------------------------------------------- /Comb.glyphsFilter/Contents/Resources/__boot__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Comb.glyphsFilter/Contents/Resources/__boot__.py -------------------------------------------------------------------------------- /Comb.glyphsFilter/Contents/Resources/__error__.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Comb.glyphsFilter/Contents/Resources/__error__.sh -------------------------------------------------------------------------------- /Comb.glyphsFilter/Contents/Resources/glyphmonkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Comb.glyphsFilter/Contents/Resources/glyphmonkey.py -------------------------------------------------------------------------------- /Comb.glyphsFilter/Contents/Resources/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Comb.glyphsFilter/Contents/Resources/plugin.py -------------------------------------------------------------------------------- /Comb.glyphsFilter/Contents/Resources/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Comb.glyphsFilter/Contents/Resources/site.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/LICENSE -------------------------------------------------------------------------------- /ShowPathArea.glyphsReporter/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/ShowPathArea.glyphsReporter/Contents/Info.plist -------------------------------------------------------------------------------- /ShowPathArea.glyphsReporter/Contents/MacOS/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/ShowPathArea.glyphsReporter/Contents/MacOS/main.py -------------------------------------------------------------------------------- /ShowPathArea.glyphsReporter/Contents/MacOS/plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/ShowPathArea.glyphsReporter/Contents/MacOS/plugin -------------------------------------------------------------------------------- /ShowPathArea.glyphsReporter/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | BNDL???? -------------------------------------------------------------------------------- /ShowPathArea.glyphsReporter/Contents/Resources/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/ShowPathArea.glyphsReporter/Contents/Resources/plugin.py -------------------------------------------------------------------------------- /ShowSymmetries.glyphsReporter/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/ShowSymmetries.glyphsReporter/Contents/Info.plist -------------------------------------------------------------------------------- /ShowSymmetries.glyphsReporter/Contents/MacOS/ShowSymmetries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/ShowSymmetries.glyphsReporter/Contents/MacOS/ShowSymmetries -------------------------------------------------------------------------------- /ShowSymmetries.glyphsReporter/Contents/MacOS/python: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Python.framework/Versions/2.6/bin/python -------------------------------------------------------------------------------- /ShowSymmetries.glyphsReporter/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | BNDL???? -------------------------------------------------------------------------------- /ShowSymmetries.glyphsReporter/Contents/Resources/ShowSymmetries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/ShowSymmetries.glyphsReporter/Contents/Resources/ShowSymmetries.py -------------------------------------------------------------------------------- /ShowSymmetries.glyphsReporter/Contents/Resources/__boot__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/ShowSymmetries.glyphsReporter/Contents/Resources/__boot__.py -------------------------------------------------------------------------------- /ShowSymmetries.glyphsReporter/Contents/Resources/__error__.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/ShowSymmetries.glyphsReporter/Contents/Resources/__error__.sh -------------------------------------------------------------------------------- /ShowSymmetries.glyphsReporter/Contents/Resources/glyphmonkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/ShowSymmetries.glyphsReporter/Contents/Resources/glyphmonkey.py -------------------------------------------------------------------------------- /ShowSymmetries.glyphsReporter/Contents/Resources/glyphmonkey.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/ShowSymmetries.glyphsReporter/Contents/Resources/glyphmonkey.pyc -------------------------------------------------------------------------------- /ShowSymmetries.glyphsReporter/Contents/Resources/reflectional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/ShowSymmetries.glyphsReporter/Contents/Resources/reflectional.png -------------------------------------------------------------------------------- /ShowSymmetries.glyphsReporter/Contents/Resources/reflecty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/ShowSymmetries.glyphsReporter/Contents/Resources/reflecty.png -------------------------------------------------------------------------------- /ShowSymmetries.glyphsReporter/Contents/Resources/rotational.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/ShowSymmetries.glyphsReporter/Contents/Resources/rotational.png -------------------------------------------------------------------------------- /ShowSymmetries.glyphsReporter/Contents/Resources/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/ShowSymmetries.glyphsReporter/Contents/Resources/site.py -------------------------------------------------------------------------------- /Springs.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Springs.README.md -------------------------------------------------------------------------------- /Springs.glyphsTool/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Springs.glyphsTool/Contents/Info.plist -------------------------------------------------------------------------------- /Springs.glyphsTool/Contents/MacOS/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Springs.glyphsTool/Contents/MacOS/main.py -------------------------------------------------------------------------------- /Springs.glyphsTool/Contents/MacOS/plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Springs.glyphsTool/Contents/MacOS/plugin -------------------------------------------------------------------------------- /Springs.glyphsTool/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | BNDL???? -------------------------------------------------------------------------------- /Springs.glyphsTool/Contents/Resources/TTSolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Springs.glyphsTool/Contents/Resources/TTSolver.py -------------------------------------------------------------------------------- /Springs.glyphsTool/Contents/Resources/cassowary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Springs.glyphsTool/Contents/Resources/cassowary/LICENSE -------------------------------------------------------------------------------- /Springs.glyphsTool/Contents/Resources/cassowary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Springs.glyphsTool/Contents/Resources/cassowary/__init__.py -------------------------------------------------------------------------------- /Springs.glyphsTool/Contents/Resources/cassowary/edit_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Springs.glyphsTool/Contents/Resources/cassowary/edit_info.py -------------------------------------------------------------------------------- /Springs.glyphsTool/Contents/Resources/cassowary/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Springs.glyphsTool/Contents/Resources/cassowary/error.py -------------------------------------------------------------------------------- /Springs.glyphsTool/Contents/Resources/cassowary/expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Springs.glyphsTool/Contents/Resources/cassowary/expression.py -------------------------------------------------------------------------------- /Springs.glyphsTool/Contents/Resources/cassowary/simplex_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Springs.glyphsTool/Contents/Resources/cassowary/simplex_solver.py -------------------------------------------------------------------------------- /Springs.glyphsTool/Contents/Resources/cassowary/tableau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Springs.glyphsTool/Contents/Resources/cassowary/tableau.py -------------------------------------------------------------------------------- /Springs.glyphsTool/Contents/Resources/cassowary/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Springs.glyphsTool/Contents/Resources/cassowary/utils.py -------------------------------------------------------------------------------- /Springs.glyphsTool/Contents/Resources/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Springs.glyphsTool/Contents/Resources/plugin.py -------------------------------------------------------------------------------- /Springs.glyphsTool/Contents/Resources/singleConstraintView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Springs.glyphsTool/Contents/Resources/singleConstraintView.nib -------------------------------------------------------------------------------- /Springs.glyphsTool/Contents/Resources/singleConstraintView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Springs.glyphsTool/Contents/Resources/singleConstraintView.xib -------------------------------------------------------------------------------- /Springs.glyphsTool/Contents/Resources/singleConstraintViewController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Springs.glyphsTool/Contents/Resources/singleConstraintViewController.py -------------------------------------------------------------------------------- /Springs.glyphsTool/Contents/Resources/toolbar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/Springs.glyphsTool/Contents/Resources/toolbar.pdf -------------------------------------------------------------------------------- /TunniLines.glyphsReporter/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/TunniLines.glyphsReporter/Contents/Info.plist -------------------------------------------------------------------------------- /TunniLines.glyphsReporter/Contents/MacOS/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/TunniLines.glyphsReporter/Contents/MacOS/main.py -------------------------------------------------------------------------------- /TunniLines.glyphsReporter/Contents/MacOS/plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/TunniLines.glyphsReporter/Contents/MacOS/plugin -------------------------------------------------------------------------------- /TunniLines.glyphsReporter/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | BNDL???? -------------------------------------------------------------------------------- /TunniLines.glyphsReporter/Contents/Resources/glyphmonkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/TunniLines.glyphsReporter/Contents/Resources/glyphmonkey.py -------------------------------------------------------------------------------- /TunniLines.glyphsReporter/Contents/Resources/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/TunniLines.glyphsReporter/Contents/Resources/plugin.py -------------------------------------------------------------------------------- /springs-e-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/springs-e-1.png -------------------------------------------------------------------------------- /springs-e-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/springs-e-2.png -------------------------------------------------------------------------------- /springs-e-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/springs-e-3.png -------------------------------------------------------------------------------- /springs-m-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/springs-m-1.png -------------------------------------------------------------------------------- /springs-m-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/springs-m-2.png -------------------------------------------------------------------------------- /springs-m-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/springs-m-3.png -------------------------------------------------------------------------------- /springs-m-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/springs-m-4.png -------------------------------------------------------------------------------- /springs-m-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoncozens/GlyphsPlugins/HEAD/springs-m-5.png --------------------------------------------------------------------------------