├── .babelrc ├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── app └── index.html ├── lib ├── createLines.js ├── createScene.js ├── drawArc.js ├── index.js ├── solutions │ ├── createScene1.js │ ├── createScene2.js │ ├── drawArc1.js │ ├── drawArc2.js │ ├── index1.js │ └── index2.js └── utils.js ├── package.json └── screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png └── images.png /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | presets: [ "es2015" ] 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | node_modules 3 | *.log 4 | .DS_Store 5 | bundle.js 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/README.md -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/app/index.html -------------------------------------------------------------------------------- /lib/createLines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/lib/createLines.js -------------------------------------------------------------------------------- /lib/createScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/lib/createScene.js -------------------------------------------------------------------------------- /lib/drawArc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/lib/drawArc.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/solutions/createScene1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/lib/solutions/createScene1.js -------------------------------------------------------------------------------- /lib/solutions/createScene2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/lib/solutions/createScene2.js -------------------------------------------------------------------------------- /lib/solutions/drawArc1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/lib/solutions/drawArc1.js -------------------------------------------------------------------------------- /lib/solutions/drawArc2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/lib/solutions/drawArc2.js -------------------------------------------------------------------------------- /lib/solutions/index1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/lib/solutions/index1.js -------------------------------------------------------------------------------- /lib/solutions/index2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/lib/solutions/index2.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/jam3-lesson-canvas2d/HEAD/screenshots/images.png --------------------------------------------------------------------------------