├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── Show Smooth Node Angle and Proportion.glyphsReporter ├── ShowKinks.glyphsReporter └── Contents │ ├── Info.plist │ ├── MacOS │ └── plugin │ └── Resources │ └── plugin.py └── images ├── CleanShot 2024-07-26 at 16.19.10.mp4 ├── colors.png ├── ignoreAxes.gif ├── images.afdesign ├── preview.png └── showRatio.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: harbortype -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbortype/ShowSmoothNodeAngleAndProportion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbortype/ShowSmoothNodeAngleAndProportion/HEAD/README.md -------------------------------------------------------------------------------- /Show Smooth Node Angle and Proportion.glyphsReporter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbortype/ShowSmoothNodeAngleAndProportion/HEAD/Show Smooth Node Angle and Proportion.glyphsReporter -------------------------------------------------------------------------------- /ShowKinks.glyphsReporter/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbortype/ShowSmoothNodeAngleAndProportion/HEAD/ShowKinks.glyphsReporter/Contents/Info.plist -------------------------------------------------------------------------------- /ShowKinks.glyphsReporter/Contents/MacOS/plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbortype/ShowSmoothNodeAngleAndProportion/HEAD/ShowKinks.glyphsReporter/Contents/MacOS/plugin -------------------------------------------------------------------------------- /ShowKinks.glyphsReporter/Contents/Resources/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbortype/ShowSmoothNodeAngleAndProportion/HEAD/ShowKinks.glyphsReporter/Contents/Resources/plugin.py -------------------------------------------------------------------------------- /images/CleanShot 2024-07-26 at 16.19.10.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbortype/ShowSmoothNodeAngleAndProportion/HEAD/images/CleanShot 2024-07-26 at 16.19.10.mp4 -------------------------------------------------------------------------------- /images/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbortype/ShowSmoothNodeAngleAndProportion/HEAD/images/colors.png -------------------------------------------------------------------------------- /images/ignoreAxes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbortype/ShowSmoothNodeAngleAndProportion/HEAD/images/ignoreAxes.gif -------------------------------------------------------------------------------- /images/images.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbortype/ShowSmoothNodeAngleAndProportion/HEAD/images/images.afdesign -------------------------------------------------------------------------------- /images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbortype/ShowSmoothNodeAngleAndProportion/HEAD/images/preview.png -------------------------------------------------------------------------------- /images/showRatio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbortype/ShowSmoothNodeAngleAndProportion/HEAD/images/showRatio.png --------------------------------------------------------------------------------