├── .gitignore ├── README.md ├── assets ├── controls-icon.svg ├── dload-icon.svg ├── info-icon.svg └── ntype.jpg ├── favicon.png ├── fonts ├── EOT │ ├── OfficeCodePro-Bold.eot │ ├── OfficeCodePro-BoldD.eot │ ├── OfficeCodePro-Light.eot │ ├── OfficeCodePro-LightD.eot │ ├── OfficeCodePro-Medium.eot │ ├── OfficeCodePro-MediumD.eot │ ├── OfficeCodePro-Regular.eot │ └── OfficeCodePro-RegularD.eot ├── OTF │ ├── OfficeCodePro-Bold.otf │ ├── OfficeCodePro-BoldD.otf │ ├── OfficeCodePro-Light.otf │ ├── OfficeCodePro-LightD.otf │ ├── OfficeCodePro-Medium.otf │ ├── OfficeCodePro-MediumD.otf │ ├── OfficeCodePro-Regular.otf │ └── OfficeCodePro-RegularD.otf ├── TTF │ ├── OfficeCodePro-Bold.ttf │ ├── OfficeCodePro-BoldD.ttf │ ├── OfficeCodePro-Light.ttf │ ├── OfficeCodePro-LightD.ttf │ ├── OfficeCodePro-Medium.ttf │ ├── OfficeCodePro-MediumD.ttf │ ├── OfficeCodePro-Regular.ttf │ └── OfficeCodePro-RegularD.ttf ├── WOFF │ ├── OfficeCodePro-Bold.woff │ ├── OfficeCodePro-BoldD.woff │ ├── OfficeCodePro-Light.woff │ ├── OfficeCodePro-LightD.woff │ ├── OfficeCodePro-Medium.woff │ ├── OfficeCodePro-MediumD.woff │ ├── OfficeCodePro-Regular.woff │ └── OfficeCodePro-RegularD.woff └── WOFF2 │ ├── OfficeCodePro-Bold.woff2 │ ├── OfficeCodePro-BoldD.woff2 │ ├── OfficeCodePro-Light.woff2 │ ├── OfficeCodePro-LightD.woff2 │ ├── OfficeCodePro-Medium.woff2 │ ├── OfficeCodePro-MediumD.woff2 │ ├── OfficeCodePro-Regular.woff2 │ └── OfficeCodePro-RegularD.woff2 ├── index.html ├── js ├── controls.js ├── export.js ├── main.js ├── ntype.js ├── opentype.js ├── opentype.min.js ├── share.js ├── three.min.js └── type.js ├── license.md ├── reset.css └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/README.md -------------------------------------------------------------------------------- /assets/controls-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/assets/controls-icon.svg -------------------------------------------------------------------------------- /assets/dload-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/assets/dload-icon.svg -------------------------------------------------------------------------------- /assets/info-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/assets/info-icon.svg -------------------------------------------------------------------------------- /assets/ntype.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/assets/ntype.jpg -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/favicon.png -------------------------------------------------------------------------------- /fonts/EOT/OfficeCodePro-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/EOT/OfficeCodePro-Bold.eot -------------------------------------------------------------------------------- /fonts/EOT/OfficeCodePro-BoldD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/EOT/OfficeCodePro-BoldD.eot -------------------------------------------------------------------------------- /fonts/EOT/OfficeCodePro-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/EOT/OfficeCodePro-Light.eot -------------------------------------------------------------------------------- /fonts/EOT/OfficeCodePro-LightD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/EOT/OfficeCodePro-LightD.eot -------------------------------------------------------------------------------- /fonts/EOT/OfficeCodePro-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/EOT/OfficeCodePro-Medium.eot -------------------------------------------------------------------------------- /fonts/EOT/OfficeCodePro-MediumD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/EOT/OfficeCodePro-MediumD.eot -------------------------------------------------------------------------------- /fonts/EOT/OfficeCodePro-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/EOT/OfficeCodePro-Regular.eot -------------------------------------------------------------------------------- /fonts/EOT/OfficeCodePro-RegularD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/EOT/OfficeCodePro-RegularD.eot -------------------------------------------------------------------------------- /fonts/OTF/OfficeCodePro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/OTF/OfficeCodePro-Bold.otf -------------------------------------------------------------------------------- /fonts/OTF/OfficeCodePro-BoldD.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/OTF/OfficeCodePro-BoldD.otf -------------------------------------------------------------------------------- /fonts/OTF/OfficeCodePro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/OTF/OfficeCodePro-Light.otf -------------------------------------------------------------------------------- /fonts/OTF/OfficeCodePro-LightD.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/OTF/OfficeCodePro-LightD.otf -------------------------------------------------------------------------------- /fonts/OTF/OfficeCodePro-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/OTF/OfficeCodePro-Medium.otf -------------------------------------------------------------------------------- /fonts/OTF/OfficeCodePro-MediumD.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/OTF/OfficeCodePro-MediumD.otf -------------------------------------------------------------------------------- /fonts/OTF/OfficeCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/OTF/OfficeCodePro-Regular.otf -------------------------------------------------------------------------------- /fonts/OTF/OfficeCodePro-RegularD.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/OTF/OfficeCodePro-RegularD.otf -------------------------------------------------------------------------------- /fonts/TTF/OfficeCodePro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/TTF/OfficeCodePro-Bold.ttf -------------------------------------------------------------------------------- /fonts/TTF/OfficeCodePro-BoldD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/TTF/OfficeCodePro-BoldD.ttf -------------------------------------------------------------------------------- /fonts/TTF/OfficeCodePro-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/TTF/OfficeCodePro-Light.ttf -------------------------------------------------------------------------------- /fonts/TTF/OfficeCodePro-LightD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/TTF/OfficeCodePro-LightD.ttf -------------------------------------------------------------------------------- /fonts/TTF/OfficeCodePro-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/TTF/OfficeCodePro-Medium.ttf -------------------------------------------------------------------------------- /fonts/TTF/OfficeCodePro-MediumD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/TTF/OfficeCodePro-MediumD.ttf -------------------------------------------------------------------------------- /fonts/TTF/OfficeCodePro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/TTF/OfficeCodePro-Regular.ttf -------------------------------------------------------------------------------- /fonts/TTF/OfficeCodePro-RegularD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/TTF/OfficeCodePro-RegularD.ttf -------------------------------------------------------------------------------- /fonts/WOFF/OfficeCodePro-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/WOFF/OfficeCodePro-Bold.woff -------------------------------------------------------------------------------- /fonts/WOFF/OfficeCodePro-BoldD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/WOFF/OfficeCodePro-BoldD.woff -------------------------------------------------------------------------------- /fonts/WOFF/OfficeCodePro-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/WOFF/OfficeCodePro-Light.woff -------------------------------------------------------------------------------- /fonts/WOFF/OfficeCodePro-LightD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/WOFF/OfficeCodePro-LightD.woff -------------------------------------------------------------------------------- /fonts/WOFF/OfficeCodePro-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/WOFF/OfficeCodePro-Medium.woff -------------------------------------------------------------------------------- /fonts/WOFF/OfficeCodePro-MediumD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/WOFF/OfficeCodePro-MediumD.woff -------------------------------------------------------------------------------- /fonts/WOFF/OfficeCodePro-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/WOFF/OfficeCodePro-Regular.woff -------------------------------------------------------------------------------- /fonts/WOFF/OfficeCodePro-RegularD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/WOFF/OfficeCodePro-RegularD.woff -------------------------------------------------------------------------------- /fonts/WOFF2/OfficeCodePro-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/WOFF2/OfficeCodePro-Bold.woff2 -------------------------------------------------------------------------------- /fonts/WOFF2/OfficeCodePro-BoldD.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/WOFF2/OfficeCodePro-BoldD.woff2 -------------------------------------------------------------------------------- /fonts/WOFF2/OfficeCodePro-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/WOFF2/OfficeCodePro-Light.woff2 -------------------------------------------------------------------------------- /fonts/WOFF2/OfficeCodePro-LightD.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/WOFF2/OfficeCodePro-LightD.woff2 -------------------------------------------------------------------------------- /fonts/WOFF2/OfficeCodePro-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/WOFF2/OfficeCodePro-Medium.woff2 -------------------------------------------------------------------------------- /fonts/WOFF2/OfficeCodePro-MediumD.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/WOFF2/OfficeCodePro-MediumD.woff2 -------------------------------------------------------------------------------- /fonts/WOFF2/OfficeCodePro-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/WOFF2/OfficeCodePro-Regular.woff2 -------------------------------------------------------------------------------- /fonts/WOFF2/OfficeCodePro-RegularD.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/fonts/WOFF2/OfficeCodePro-RegularD.woff2 -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/index.html -------------------------------------------------------------------------------- /js/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/js/controls.js -------------------------------------------------------------------------------- /js/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/js/export.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/js/main.js -------------------------------------------------------------------------------- /js/ntype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/js/ntype.js -------------------------------------------------------------------------------- /js/opentype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/js/opentype.js -------------------------------------------------------------------------------- /js/opentype.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/js/opentype.min.js -------------------------------------------------------------------------------- /js/share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/js/share.js -------------------------------------------------------------------------------- /js/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/js/three.min.js -------------------------------------------------------------------------------- /js/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/js/type.js -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/license.md -------------------------------------------------------------------------------- /reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/reset.css -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzweerink/ntype/HEAD/style.css --------------------------------------------------------------------------------