├── README.md ├── app-sp ├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── app │ ├── images │ │ └── sp │ │ │ ├── frame.png │ │ │ ├── goch.png │ │ │ ├── pop-art.png │ │ │ ├── pop2.png │ │ │ ├── pop3.png │ │ │ └── weave.png │ └── index.html ├── gulpfile.js ├── package.json └── src │ ├── js-app │ ├── app-collection.js │ ├── apps │ │ ├── 00-line-animation-with-circles │ │ │ ├── app.js │ │ │ └── verlet │ │ │ │ ├── ball.js │ │ │ │ ├── composite.js │ │ │ │ ├── constants.js │ │ │ │ ├── constraints │ │ │ │ ├── angle.js │ │ │ │ ├── distance.js │ │ │ │ └── pin.js │ │ │ │ ├── particle.js │ │ │ │ └── verlet.js │ │ ├── 01-how-many-ball │ │ │ ├── app.js │ │ │ ├── box.js │ │ │ └── components │ │ │ │ ├── aabb.js │ │ │ │ ├── ball.js │ │ │ │ ├── box.js │ │ │ │ ├── camera.js │ │ │ │ ├── constants.js │ │ │ │ ├── contact.js │ │ │ │ ├── floor.js │ │ │ │ ├── geometry.js │ │ │ │ ├── line.js │ │ │ │ ├── matrix23.js │ │ │ │ ├── plane.js │ │ │ │ ├── rectangle.js │ │ │ │ ├── rigid-body.js │ │ │ │ ├── solver.js │ │ │ │ ├── utils.js │ │ │ │ └── wall.js │ │ ├── 02-four-different-grivities │ │ │ ├── app.js │ │ │ ├── ball.js │ │ │ ├── components │ │ │ │ ├── aabb.js │ │ │ │ ├── ball.js │ │ │ │ ├── box.js │ │ │ │ ├── camera.js │ │ │ │ ├── constants.js │ │ │ │ ├── contact.js │ │ │ │ ├── floor.js │ │ │ │ ├── geometry.js │ │ │ │ ├── line.js │ │ │ │ ├── matrix23.js │ │ │ │ ├── plane.js │ │ │ │ ├── rectangle.js │ │ │ │ ├── rigid-body.js │ │ │ │ ├── solver.js │ │ │ │ ├── utils.js │ │ │ │ └── wall.js │ │ │ └── moving-ball.js │ │ ├── 03-balls-are-being-wiped │ │ │ ├── app.js │ │ │ ├── ball.js │ │ │ ├── components │ │ │ │ ├── aabb.js │ │ │ │ ├── ball.js │ │ │ │ ├── box.js │ │ │ │ ├── camera.js │ │ │ │ ├── constants.js │ │ │ │ ├── contact.js │ │ │ │ ├── floor.js │ │ │ │ ├── geometry.js │ │ │ │ ├── line.js │ │ │ │ ├── matrix23.js │ │ │ │ ├── plane.js │ │ │ │ ├── rectangle.js │ │ │ │ ├── rigid-body.js │ │ │ │ ├── solver.js │ │ │ │ ├── utils.js │ │ │ │ └── wall.js │ │ │ ├── wiper-rectangle.js │ │ │ └── wiper.js │ │ ├── 04-colorful-balls-animation │ │ │ ├── app.js │ │ │ └── components │ │ │ │ ├── aabb.js │ │ │ │ ├── ball.js │ │ │ │ ├── box.js │ │ │ │ ├── camera.js │ │ │ │ ├── constants.js │ │ │ │ ├── contact.js │ │ │ │ ├── floor.js │ │ │ │ ├── geometry.js │ │ │ │ ├── hsv2rgb.js │ │ │ │ ├── line.js │ │ │ │ ├── matrix23.js │ │ │ │ ├── plane.js │ │ │ │ ├── rectangle.js │ │ │ │ ├── rigid-body.js │ │ │ │ ├── solver.js │ │ │ │ ├── utils.js │ │ │ │ └── wall.js │ │ ├── 05-coordintes-animation │ │ │ ├── app.js │ │ │ ├── ball.js │ │ │ └── components │ │ │ │ ├── aabb.js │ │ │ │ ├── ball.js │ │ │ │ ├── box.js │ │ │ │ ├── camera.js │ │ │ │ ├── constants.js │ │ │ │ ├── contact.js │ │ │ │ ├── floor.js │ │ │ │ ├── geometry.js │ │ │ │ ├── hsv2rgb.js │ │ │ │ ├── line.js │ │ │ │ ├── matrix23.js │ │ │ │ ├── plane.js │ │ │ │ ├── rectangle.js │ │ │ │ ├── rigid-body.js │ │ │ │ ├── solver.js │ │ │ │ ├── utils.js │ │ │ │ └── wall.js │ │ ├── 06-reflection-balls │ │ │ ├── app.js │ │ │ ├── ball.js │ │ │ ├── base-object.js │ │ │ └── particles.js │ │ ├── 07-painting-with-balls │ │ │ ├── app.js │ │ │ ├── ball.js │ │ │ ├── base-object.js │ │ │ └── particle-manager.js │ │ ├── 08-weaves │ │ │ ├── app.js │ │ │ ├── impulse-ball.js │ │ │ ├── main-shape.js │ │ │ └── point.js │ │ ├── 09-boxes │ │ │ ├── app.js │ │ │ └── components │ │ │ │ ├── aabb.js │ │ │ │ ├── ball.js │ │ │ │ ├── box.js │ │ │ │ ├── camera.js │ │ │ │ ├── constants.js │ │ │ │ ├── contact.js │ │ │ │ ├── floor.js │ │ │ │ ├── geometry.js │ │ │ │ ├── line.js │ │ │ │ ├── matrix23.js │ │ │ │ ├── plane.js │ │ │ │ ├── rectangle.js │ │ │ │ ├── rigid-body.js │ │ │ │ ├── solver.js │ │ │ │ ├── utils.js │ │ │ │ └── wall.js │ │ ├── 99-line-animation-with-circles │ │ │ ├── app.js │ │ │ └── verlet │ │ │ │ ├── ball.js │ │ │ │ ├── composite.js │ │ │ │ ├── constants.js │ │ │ │ ├── constraints │ │ │ │ ├── angle.js │ │ │ │ ├── distance.js │ │ │ │ └── pin.js │ │ │ │ ├── particle.js │ │ │ │ └── verlet.js │ │ ├── boiler-plate │ │ │ └── app.js │ │ └── sample │ │ │ └── demo-app.js │ └── component │ │ └── background-white.js │ ├── js │ ├── actions │ │ └── app-action.js │ ├── components │ │ ├── js │ │ │ └── load-view.js │ │ └── jsx │ │ │ ├── about-content.jsx │ │ │ ├── about-content │ │ │ ├── close-button.jsx │ │ │ └── link-text.jsx │ │ │ ├── app-content.jsx │ │ │ ├── app-contents │ │ │ ├── close-button.jsx │ │ │ ├── work-main-wrapper.jsx │ │ │ └── work-text.jsx │ │ │ ├── app.jsx │ │ │ ├── bottom-content.jsx │ │ │ ├── header.jsx │ │ │ ├── headers │ │ │ └── close-button.jsx │ │ │ ├── share-content.jsx │ │ │ └── sns-texts │ │ │ └── sns.jsx │ ├── data │ │ └── app-data.js │ ├── dispatcher │ │ └── dispatcher.js │ ├── main.js │ ├── router │ │ ├── app-router.jsx │ │ ├── history.js │ │ ├── router.js │ │ └── utils.js │ ├── stores │ │ ├── app-store.js │ │ └── work-store.js │ └── utils │ │ ├── constants.js │ │ ├── constants_app.js │ │ ├── keyboard.js │ │ ├── ticker.js │ │ └── window-event.js │ └── sass │ ├── base │ ├── _base.scss │ ├── _constants.scss │ └── _font.scss │ ├── components │ ├── _about-content.scss │ ├── _bottom-content.scss │ ├── _close-button.scss │ ├── _flip-button.scss │ ├── _header.scss │ ├── _link_text.scss │ ├── _loader.scss │ ├── _main.scss │ ├── _share.scss │ └── _works.scss │ ├── main.scss │ └── utils │ ├── _easing.scss │ ├── _error.scss │ ├── _mixin.scss │ └── extends │ └── _extends.scss ├── app ├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── app │ ├── images │ │ ├── cursors │ │ │ ├── closedhand.cur │ │ │ └── openhand.cur │ │ ├── frame.png │ │ ├── goch.png │ │ ├── pop-art.png │ │ ├── pop2.png │ │ ├── pop3.png │ │ └── weave.png │ ├── index.html │ ├── index_deploy.html │ └── sample │ │ ├── sample00.jpg │ │ ├── sample01.jpg │ │ └── sample02.jpg ├── gulpfile.js ├── package.json └── src │ ├── js-app │ ├── app-collection.js │ ├── apps │ │ ├── 00-line-animation-with-circles │ │ │ ├── app.js │ │ │ └── verlet │ │ │ │ ├── ball.js │ │ │ │ ├── composite.js │ │ │ │ ├── constants.js │ │ │ │ ├── constraints │ │ │ │ ├── angle.js │ │ │ │ ├── distance.js │ │ │ │ └── pin.js │ │ │ │ ├── particle.js │ │ │ │ └── verlet.js │ │ ├── 01-how-many-ball │ │ │ ├── app.js │ │ │ ├── box.js │ │ │ └── components │ │ │ │ ├── aabb.js │ │ │ │ ├── ball.js │ │ │ │ ├── box.js │ │ │ │ ├── camera.js │ │ │ │ ├── constants.js │ │ │ │ ├── contact.js │ │ │ │ ├── floor.js │ │ │ │ ├── geometry.js │ │ │ │ ├── line.js │ │ │ │ ├── matrix23.js │ │ │ │ ├── plane.js │ │ │ │ ├── rectangle.js │ │ │ │ ├── rigid-body.js │ │ │ │ ├── solver.js │ │ │ │ ├── utils.js │ │ │ │ └── wall.js │ │ ├── 02-four-different-grivities │ │ │ ├── app.js │ │ │ ├── ball.js │ │ │ ├── components │ │ │ │ ├── aabb.js │ │ │ │ ├── ball.js │ │ │ │ ├── box.js │ │ │ │ ├── camera.js │ │ │ │ ├── constants.js │ │ │ │ ├── contact.js │ │ │ │ ├── floor.js │ │ │ │ ├── geometry.js │ │ │ │ ├── line.js │ │ │ │ ├── matrix23.js │ │ │ │ ├── plane.js │ │ │ │ ├── rectangle.js │ │ │ │ ├── rigid-body.js │ │ │ │ ├── solver.js │ │ │ │ ├── utils.js │ │ │ │ └── wall.js │ │ │ └── moving-ball.js │ │ ├── 03-balls-are-being-wiped │ │ │ ├── app.js │ │ │ ├── ball.js │ │ │ ├── components │ │ │ │ ├── aabb.js │ │ │ │ ├── ball.js │ │ │ │ ├── box.js │ │ │ │ ├── camera.js │ │ │ │ ├── constants.js │ │ │ │ ├── contact.js │ │ │ │ ├── floor.js │ │ │ │ ├── geometry.js │ │ │ │ ├── line.js │ │ │ │ ├── matrix23.js │ │ │ │ ├── plane.js │ │ │ │ ├── rectangle.js │ │ │ │ ├── rigid-body.js │ │ │ │ ├── solver.js │ │ │ │ ├── utils.js │ │ │ │ └── wall.js │ │ │ ├── wiper-rectangle.js │ │ │ └── wiper.js │ │ ├── 04-colorful-balls-animation │ │ │ ├── app.js │ │ │ └── components │ │ │ │ ├── aabb.js │ │ │ │ ├── ball.js │ │ │ │ ├── box.js │ │ │ │ ├── camera.js │ │ │ │ ├── constants.js │ │ │ │ ├── contact.js │ │ │ │ ├── floor.js │ │ │ │ ├── geometry.js │ │ │ │ ├── hsv2rgb.js │ │ │ │ ├── line.js │ │ │ │ ├── matrix23.js │ │ │ │ ├── plane.js │ │ │ │ ├── rectangle.js │ │ │ │ ├── rigid-body.js │ │ │ │ ├── solver.js │ │ │ │ ├── utils.js │ │ │ │ └── wall.js │ │ ├── 05-coordintes-animation │ │ │ ├── app.js │ │ │ ├── ball.js │ │ │ └── components │ │ │ │ ├── aabb.js │ │ │ │ ├── ball.js │ │ │ │ ├── box.js │ │ │ │ ├── camera.js │ │ │ │ ├── constants.js │ │ │ │ ├── contact.js │ │ │ │ ├── floor.js │ │ │ │ ├── geometry.js │ │ │ │ ├── hsv2rgb.js │ │ │ │ ├── line.js │ │ │ │ ├── matrix23.js │ │ │ │ ├── plane.js │ │ │ │ ├── rectangle.js │ │ │ │ ├── rigid-body.js │ │ │ │ ├── solver.js │ │ │ │ ├── utils.js │ │ │ │ └── wall.js │ │ ├── 06-reflection-balls │ │ │ ├── app.js │ │ │ ├── ball.js │ │ │ ├── base-object.js │ │ │ └── particles.js │ │ ├── 07-painting-with-balls │ │ │ ├── app.js │ │ │ ├── ball.js │ │ │ ├── base-object.js │ │ │ └── particle-manager.js │ │ ├── 08-weaves │ │ │ ├── app.js │ │ │ ├── impulse-ball.js │ │ │ ├── main-shape.js │ │ │ └── point.js │ │ ├── 09-boxes │ │ │ ├── app.js │ │ │ └── components │ │ │ │ ├── aabb.js │ │ │ │ ├── ball.js │ │ │ │ ├── box.js │ │ │ │ ├── camera.js │ │ │ │ ├── constants.js │ │ │ │ ├── contact.js │ │ │ │ ├── floor.js │ │ │ │ ├── geometry.js │ │ │ │ ├── line.js │ │ │ │ ├── matrix23.js │ │ │ │ ├── plane.js │ │ │ │ ├── rectangle.js │ │ │ │ ├── rigid-body.js │ │ │ │ ├── solver.js │ │ │ │ ├── utils.js │ │ │ │ └── wall.js │ │ └── sample │ │ │ └── demo-app.js │ └── component │ │ └── background-white.js │ ├── js │ ├── actions │ │ └── app-action.js │ ├── components │ │ ├── js │ │ │ ├── canvas-app.js │ │ │ ├── canvas-component │ │ │ │ ├── background-black.js │ │ │ │ ├── scroll-bar.js │ │ │ │ └── work-rope.js │ │ │ └── load-view.js │ │ └── jsx │ │ │ ├── about-content.jsx │ │ │ ├── about-content │ │ │ ├── close-button.jsx │ │ │ └── link-text.jsx │ │ │ ├── app-content.jsx │ │ │ ├── app-contents │ │ │ ├── work-ball.jsx │ │ │ ├── work-main-wrapper.jsx │ │ │ └── work-text.jsx │ │ │ ├── app.jsx │ │ │ ├── footer.jsx │ │ │ └── footers │ │ │ ├── footer-fullscreen.jsx │ │ │ ├── footer-name.jsx │ │ │ ├── footer-title.jsx │ │ │ ├── sns-text.jsx │ │ │ └── sns-texts │ │ │ ├── facebook.jsx │ │ │ ├── sns.jsx │ │ │ └── twitter.jsx │ ├── data │ │ └── app-data.js │ ├── dispatcher │ │ └── dispatcher.js │ ├── main.js │ ├── physics-components │ │ └── verlet │ │ │ ├── ball.js │ │ │ ├── composite.js │ │ │ ├── constants.js │ │ │ ├── constraints │ │ │ ├── angle.js │ │ │ ├── distance.js │ │ │ └── pin.js │ │ │ ├── particle.js │ │ │ └── verlet.js │ ├── router │ │ ├── app-router.jsx │ │ ├── history.js │ │ ├── router.js │ │ └── utils.js │ ├── stores │ │ ├── app-store.js │ │ └── work-store.js │ └── utils │ │ ├── constants.js │ │ ├── constants_app.js │ │ ├── keyboard.js │ │ ├── ticker.js │ │ └── window-event.js │ └── sass │ ├── base │ ├── _base.scss │ ├── _constants.scss │ └── _font.scss │ ├── components │ ├── _about-content.scss │ ├── _flip-button.scss │ ├── _footer.scss │ ├── _link_text.scss │ ├── _loader.scss │ ├── _main.scss │ └── _works.scss │ ├── main.scss │ └── utils │ ├── _easing.scss │ ├── _error.scss │ ├── _mixin.scss │ └── extends │ └── _extends.scss └── design └── design.sketch /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/README.md -------------------------------------------------------------------------------- /app-sp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/.gitignore -------------------------------------------------------------------------------- /app-sp/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/.npmignore -------------------------------------------------------------------------------- /app-sp/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/LICENSE.md -------------------------------------------------------------------------------- /app-sp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/README.md -------------------------------------------------------------------------------- /app-sp/app/images/sp/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/app/images/sp/frame.png -------------------------------------------------------------------------------- /app-sp/app/images/sp/goch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/app/images/sp/goch.png -------------------------------------------------------------------------------- /app-sp/app/images/sp/pop-art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/app/images/sp/pop-art.png -------------------------------------------------------------------------------- /app-sp/app/images/sp/pop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/app/images/sp/pop2.png -------------------------------------------------------------------------------- /app-sp/app/images/sp/pop3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/app/images/sp/pop3.png -------------------------------------------------------------------------------- /app-sp/app/images/sp/weave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/app/images/sp/weave.png -------------------------------------------------------------------------------- /app-sp/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/app/index.html -------------------------------------------------------------------------------- /app-sp/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/gulpfile.js -------------------------------------------------------------------------------- /app-sp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/package.json -------------------------------------------------------------------------------- /app-sp/src/js-app/app-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/app-collection.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/00-line-animation-with-circles/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/00-line-animation-with-circles/app.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/00-line-animation-with-circles/verlet/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/00-line-animation-with-circles/verlet/ball.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/00-line-animation-with-circles/verlet/composite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/00-line-animation-with-circles/verlet/composite.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/00-line-animation-with-circles/verlet/constants.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | TIME_STEP : 1 / 30 3 | }; 4 | -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/00-line-animation-with-circles/verlet/constraints/angle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/00-line-animation-with-circles/verlet/constraints/angle.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/00-line-animation-with-circles/verlet/constraints/distance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/00-line-animation-with-circles/verlet/constraints/distance.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/00-line-animation-with-circles/verlet/constraints/pin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/00-line-animation-with-circles/verlet/constraints/pin.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/00-line-animation-with-circles/verlet/particle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/00-line-animation-with-circles/verlet/particle.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/00-line-animation-with-circles/verlet/verlet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/00-line-animation-with-circles/verlet/verlet.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/01-how-many-ball/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/01-how-many-ball/app.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/01-how-many-ball/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/01-how-many-ball/box.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/01-how-many-ball/components/aabb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/01-how-many-ball/components/aabb.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/01-how-many-ball/components/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/01-how-many-ball/components/ball.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/01-how-many-ball/components/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/01-how-many-ball/components/box.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/01-how-many-ball/components/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/01-how-many-ball/components/camera.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/01-how-many-ball/components/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/01-how-many-ball/components/constants.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/01-how-many-ball/components/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/01-how-many-ball/components/contact.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/01-how-many-ball/components/floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/01-how-many-ball/components/floor.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/01-how-many-ball/components/geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/01-how-many-ball/components/geometry.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/01-how-many-ball/components/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/01-how-many-ball/components/line.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/01-how-many-ball/components/matrix23.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/01-how-many-ball/components/matrix23.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/01-how-many-ball/components/plane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/01-how-many-ball/components/plane.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/01-how-many-ball/components/rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/01-how-many-ball/components/rectangle.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/01-how-many-ball/components/rigid-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/01-how-many-ball/components/rigid-body.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/01-how-many-ball/components/solver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/01-how-many-ball/components/solver.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/01-how-many-ball/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/01-how-many-ball/components/utils.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/01-how-many-ball/components/wall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/01-how-many-ball/components/wall.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/app.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/ball.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/components/aabb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/components/aabb.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/components/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/components/ball.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/components/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/components/box.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/components/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/components/camera.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/components/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/components/constants.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/components/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/components/contact.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/components/floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/components/floor.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/components/geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/components/geometry.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/components/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/components/line.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/components/matrix23.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/components/matrix23.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/components/plane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/components/plane.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/components/rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/components/rectangle.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/components/rigid-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/components/rigid-body.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/components/solver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/components/solver.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/components/utils.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/components/wall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/components/wall.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/02-four-different-grivities/moving-ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/02-four-different-grivities/moving-ball.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/app.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/ball.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/components/aabb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/components/aabb.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/components/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/components/ball.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/components/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/components/box.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/components/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/components/camera.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/components/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/components/constants.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/components/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/components/contact.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/components/floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/components/floor.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/components/geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/components/geometry.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/components/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/components/line.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/components/matrix23.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/components/matrix23.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/components/plane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/components/plane.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/components/rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/components/rectangle.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/components/rigid-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/components/rigid-body.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/components/solver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/components/solver.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/components/utils.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/components/wall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/components/wall.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/wiper-rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/wiper-rectangle.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/03-balls-are-being-wiped/wiper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/03-balls-are-being-wiped/wiper.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/04-colorful-balls-animation/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/04-colorful-balls-animation/app.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/04-colorful-balls-animation/components/aabb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/04-colorful-balls-animation/components/aabb.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/04-colorful-balls-animation/components/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/04-colorful-balls-animation/components/ball.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/04-colorful-balls-animation/components/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/04-colorful-balls-animation/components/box.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/04-colorful-balls-animation/components/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/04-colorful-balls-animation/components/camera.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/04-colorful-balls-animation/components/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/04-colorful-balls-animation/components/constants.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/04-colorful-balls-animation/components/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/04-colorful-balls-animation/components/contact.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/04-colorful-balls-animation/components/floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/04-colorful-balls-animation/components/floor.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/04-colorful-balls-animation/components/geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/04-colorful-balls-animation/components/geometry.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/04-colorful-balls-animation/components/hsv2rgb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/04-colorful-balls-animation/components/hsv2rgb.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/04-colorful-balls-animation/components/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/04-colorful-balls-animation/components/line.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/04-colorful-balls-animation/components/matrix23.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/04-colorful-balls-animation/components/matrix23.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/04-colorful-balls-animation/components/plane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/04-colorful-balls-animation/components/plane.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/04-colorful-balls-animation/components/rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/04-colorful-balls-animation/components/rectangle.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/04-colorful-balls-animation/components/rigid-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/04-colorful-balls-animation/components/rigid-body.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/04-colorful-balls-animation/components/solver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/04-colorful-balls-animation/components/solver.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/04-colorful-balls-animation/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/04-colorful-balls-animation/components/utils.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/04-colorful-balls-animation/components/wall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/04-colorful-balls-animation/components/wall.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/app.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/ball.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/components/aabb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/components/aabb.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/components/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/components/ball.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/components/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/components/box.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/components/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/components/camera.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/components/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/components/constants.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/components/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/components/contact.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/components/floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/components/floor.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/components/geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/components/geometry.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/components/hsv2rgb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/components/hsv2rgb.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/components/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/components/line.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/components/matrix23.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/components/matrix23.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/components/plane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/components/plane.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/components/rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/components/rectangle.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/components/rigid-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/components/rigid-body.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/components/solver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/components/solver.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/components/utils.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/05-coordintes-animation/components/wall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/05-coordintes-animation/components/wall.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/06-reflection-balls/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/06-reflection-balls/app.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/06-reflection-balls/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/06-reflection-balls/ball.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/06-reflection-balls/base-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/06-reflection-balls/base-object.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/06-reflection-balls/particles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/06-reflection-balls/particles.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/07-painting-with-balls/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/07-painting-with-balls/app.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/07-painting-with-balls/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/07-painting-with-balls/ball.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/07-painting-with-balls/base-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/07-painting-with-balls/base-object.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/07-painting-with-balls/particle-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/07-painting-with-balls/particle-manager.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/08-weaves/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/08-weaves/app.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/08-weaves/impulse-ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/08-weaves/impulse-ball.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/08-weaves/main-shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/08-weaves/main-shape.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/08-weaves/point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/08-weaves/point.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/09-boxes/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/09-boxes/app.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/09-boxes/components/aabb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/09-boxes/components/aabb.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/09-boxes/components/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/09-boxes/components/ball.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/09-boxes/components/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/09-boxes/components/box.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/09-boxes/components/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/09-boxes/components/camera.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/09-boxes/components/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/09-boxes/components/constants.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/09-boxes/components/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/09-boxes/components/contact.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/09-boxes/components/floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/09-boxes/components/floor.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/09-boxes/components/geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/09-boxes/components/geometry.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/09-boxes/components/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/09-boxes/components/line.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/09-boxes/components/matrix23.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/09-boxes/components/matrix23.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/09-boxes/components/plane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/09-boxes/components/plane.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/09-boxes/components/rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/09-boxes/components/rectangle.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/09-boxes/components/rigid-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/09-boxes/components/rigid-body.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/09-boxes/components/solver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/09-boxes/components/solver.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/09-boxes/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/09-boxes/components/utils.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/09-boxes/components/wall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/09-boxes/components/wall.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/99-line-animation-with-circles/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/99-line-animation-with-circles/app.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/99-line-animation-with-circles/verlet/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/99-line-animation-with-circles/verlet/ball.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/99-line-animation-with-circles/verlet/composite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/99-line-animation-with-circles/verlet/composite.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/99-line-animation-with-circles/verlet/constants.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | TIME_STEP : 1 / 30 3 | }; 4 | -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/99-line-animation-with-circles/verlet/constraints/angle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/99-line-animation-with-circles/verlet/constraints/angle.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/99-line-animation-with-circles/verlet/constraints/distance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/99-line-animation-with-circles/verlet/constraints/distance.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/99-line-animation-with-circles/verlet/constraints/pin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/99-line-animation-with-circles/verlet/constraints/pin.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/99-line-animation-with-circles/verlet/particle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/99-line-animation-with-circles/verlet/particle.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/99-line-animation-with-circles/verlet/verlet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/99-line-animation-with-circles/verlet/verlet.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/boiler-plate/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/boiler-plate/app.js -------------------------------------------------------------------------------- /app-sp/src/js-app/apps/sample/demo-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/apps/sample/demo-app.js -------------------------------------------------------------------------------- /app-sp/src/js-app/component/background-white.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js-app/component/background-white.js -------------------------------------------------------------------------------- /app-sp/src/js/actions/app-action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/actions/app-action.js -------------------------------------------------------------------------------- /app-sp/src/js/components/js/load-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/components/js/load-view.js -------------------------------------------------------------------------------- /app-sp/src/js/components/jsx/about-content.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/components/jsx/about-content.jsx -------------------------------------------------------------------------------- /app-sp/src/js/components/jsx/about-content/close-button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/components/jsx/about-content/close-button.jsx -------------------------------------------------------------------------------- /app-sp/src/js/components/jsx/about-content/link-text.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/components/jsx/about-content/link-text.jsx -------------------------------------------------------------------------------- /app-sp/src/js/components/jsx/app-content.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/components/jsx/app-content.jsx -------------------------------------------------------------------------------- /app-sp/src/js/components/jsx/app-contents/close-button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/components/jsx/app-contents/close-button.jsx -------------------------------------------------------------------------------- /app-sp/src/js/components/jsx/app-contents/work-main-wrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/components/jsx/app-contents/work-main-wrapper.jsx -------------------------------------------------------------------------------- /app-sp/src/js/components/jsx/app-contents/work-text.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/components/jsx/app-contents/work-text.jsx -------------------------------------------------------------------------------- /app-sp/src/js/components/jsx/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/components/jsx/app.jsx -------------------------------------------------------------------------------- /app-sp/src/js/components/jsx/bottom-content.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/components/jsx/bottom-content.jsx -------------------------------------------------------------------------------- /app-sp/src/js/components/jsx/header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/components/jsx/header.jsx -------------------------------------------------------------------------------- /app-sp/src/js/components/jsx/headers/close-button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/components/jsx/headers/close-button.jsx -------------------------------------------------------------------------------- /app-sp/src/js/components/jsx/share-content.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/components/jsx/share-content.jsx -------------------------------------------------------------------------------- /app-sp/src/js/components/jsx/sns-texts/sns.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/components/jsx/sns-texts/sns.jsx -------------------------------------------------------------------------------- /app-sp/src/js/data/app-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/data/app-data.js -------------------------------------------------------------------------------- /app-sp/src/js/dispatcher/dispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/dispatcher/dispatcher.js -------------------------------------------------------------------------------- /app-sp/src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/main.js -------------------------------------------------------------------------------- /app-sp/src/js/router/app-router.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/router/app-router.jsx -------------------------------------------------------------------------------- /app-sp/src/js/router/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/router/history.js -------------------------------------------------------------------------------- /app-sp/src/js/router/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/router/router.js -------------------------------------------------------------------------------- /app-sp/src/js/router/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/router/utils.js -------------------------------------------------------------------------------- /app-sp/src/js/stores/app-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/stores/app-store.js -------------------------------------------------------------------------------- /app-sp/src/js/stores/work-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/stores/work-store.js -------------------------------------------------------------------------------- /app-sp/src/js/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/utils/constants.js -------------------------------------------------------------------------------- /app-sp/src/js/utils/constants_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/utils/constants_app.js -------------------------------------------------------------------------------- /app-sp/src/js/utils/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/utils/keyboard.js -------------------------------------------------------------------------------- /app-sp/src/js/utils/ticker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/utils/ticker.js -------------------------------------------------------------------------------- /app-sp/src/js/utils/window-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/js/utils/window-event.js -------------------------------------------------------------------------------- /app-sp/src/sass/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/sass/base/_base.scss -------------------------------------------------------------------------------- /app-sp/src/sass/base/_constants.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/sass/base/_constants.scss -------------------------------------------------------------------------------- /app-sp/src/sass/base/_font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/sass/base/_font.scss -------------------------------------------------------------------------------- /app-sp/src/sass/components/_about-content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/sass/components/_about-content.scss -------------------------------------------------------------------------------- /app-sp/src/sass/components/_bottom-content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/sass/components/_bottom-content.scss -------------------------------------------------------------------------------- /app-sp/src/sass/components/_close-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/sass/components/_close-button.scss -------------------------------------------------------------------------------- /app-sp/src/sass/components/_flip-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/sass/components/_flip-button.scss -------------------------------------------------------------------------------- /app-sp/src/sass/components/_header.scss: -------------------------------------------------------------------------------- 1 | .header-wrapper{ 2 | 3 | } 4 | -------------------------------------------------------------------------------- /app-sp/src/sass/components/_link_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/sass/components/_link_text.scss -------------------------------------------------------------------------------- /app-sp/src/sass/components/_loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/sass/components/_loader.scss -------------------------------------------------------------------------------- /app-sp/src/sass/components/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/sass/components/_main.scss -------------------------------------------------------------------------------- /app-sp/src/sass/components/_share.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/sass/components/_share.scss -------------------------------------------------------------------------------- /app-sp/src/sass/components/_works.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/sass/components/_works.scss -------------------------------------------------------------------------------- /app-sp/src/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/sass/main.scss -------------------------------------------------------------------------------- /app-sp/src/sass/utils/_easing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/sass/utils/_easing.scss -------------------------------------------------------------------------------- /app-sp/src/sass/utils/_error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/sass/utils/_error.scss -------------------------------------------------------------------------------- /app-sp/src/sass/utils/_mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/sass/utils/_mixin.scss -------------------------------------------------------------------------------- /app-sp/src/sass/utils/extends/_extends.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app-sp/src/sass/utils/extends/_extends.scss -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/.npmignore -------------------------------------------------------------------------------- /app/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/LICENSE.md -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/README.md -------------------------------------------------------------------------------- /app/app/images/cursors/closedhand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/app/images/cursors/closedhand.cur -------------------------------------------------------------------------------- /app/app/images/cursors/openhand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/app/images/cursors/openhand.cur -------------------------------------------------------------------------------- /app/app/images/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/app/images/frame.png -------------------------------------------------------------------------------- /app/app/images/goch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/app/images/goch.png -------------------------------------------------------------------------------- /app/app/images/pop-art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/app/images/pop-art.png -------------------------------------------------------------------------------- /app/app/images/pop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/app/images/pop2.png -------------------------------------------------------------------------------- /app/app/images/pop3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/app/images/pop3.png -------------------------------------------------------------------------------- /app/app/images/weave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/app/images/weave.png -------------------------------------------------------------------------------- /app/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/app/index.html -------------------------------------------------------------------------------- /app/app/index_deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/app/index_deploy.html -------------------------------------------------------------------------------- /app/app/sample/sample00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/app/sample/sample00.jpg -------------------------------------------------------------------------------- /app/app/sample/sample01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/app/sample/sample01.jpg -------------------------------------------------------------------------------- /app/app/sample/sample02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/app/sample/sample02.jpg -------------------------------------------------------------------------------- /app/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/gulpfile.js -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/package.json -------------------------------------------------------------------------------- /app/src/js-app/app-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/app-collection.js -------------------------------------------------------------------------------- /app/src/js-app/apps/00-line-animation-with-circles/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/00-line-animation-with-circles/app.js -------------------------------------------------------------------------------- /app/src/js-app/apps/00-line-animation-with-circles/verlet/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/00-line-animation-with-circles/verlet/ball.js -------------------------------------------------------------------------------- /app/src/js-app/apps/00-line-animation-with-circles/verlet/composite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/00-line-animation-with-circles/verlet/composite.js -------------------------------------------------------------------------------- /app/src/js-app/apps/00-line-animation-with-circles/verlet/constants.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | TIME_STEP : 1 / 30 3 | }; 4 | -------------------------------------------------------------------------------- /app/src/js-app/apps/00-line-animation-with-circles/verlet/constraints/angle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/00-line-animation-with-circles/verlet/constraints/angle.js -------------------------------------------------------------------------------- /app/src/js-app/apps/00-line-animation-with-circles/verlet/constraints/distance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/00-line-animation-with-circles/verlet/constraints/distance.js -------------------------------------------------------------------------------- /app/src/js-app/apps/00-line-animation-with-circles/verlet/constraints/pin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/00-line-animation-with-circles/verlet/constraints/pin.js -------------------------------------------------------------------------------- /app/src/js-app/apps/00-line-animation-with-circles/verlet/particle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/00-line-animation-with-circles/verlet/particle.js -------------------------------------------------------------------------------- /app/src/js-app/apps/00-line-animation-with-circles/verlet/verlet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/00-line-animation-with-circles/verlet/verlet.js -------------------------------------------------------------------------------- /app/src/js-app/apps/01-how-many-ball/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/01-how-many-ball/app.js -------------------------------------------------------------------------------- /app/src/js-app/apps/01-how-many-ball/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/01-how-many-ball/box.js -------------------------------------------------------------------------------- /app/src/js-app/apps/01-how-many-ball/components/aabb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/01-how-many-ball/components/aabb.js -------------------------------------------------------------------------------- /app/src/js-app/apps/01-how-many-ball/components/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/01-how-many-ball/components/ball.js -------------------------------------------------------------------------------- /app/src/js-app/apps/01-how-many-ball/components/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/01-how-many-ball/components/box.js -------------------------------------------------------------------------------- /app/src/js-app/apps/01-how-many-ball/components/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/01-how-many-ball/components/camera.js -------------------------------------------------------------------------------- /app/src/js-app/apps/01-how-many-ball/components/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/01-how-many-ball/components/constants.js -------------------------------------------------------------------------------- /app/src/js-app/apps/01-how-many-ball/components/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/01-how-many-ball/components/contact.js -------------------------------------------------------------------------------- /app/src/js-app/apps/01-how-many-ball/components/floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/01-how-many-ball/components/floor.js -------------------------------------------------------------------------------- /app/src/js-app/apps/01-how-many-ball/components/geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/01-how-many-ball/components/geometry.js -------------------------------------------------------------------------------- /app/src/js-app/apps/01-how-many-ball/components/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/01-how-many-ball/components/line.js -------------------------------------------------------------------------------- /app/src/js-app/apps/01-how-many-ball/components/matrix23.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/01-how-many-ball/components/matrix23.js -------------------------------------------------------------------------------- /app/src/js-app/apps/01-how-many-ball/components/plane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/01-how-many-ball/components/plane.js -------------------------------------------------------------------------------- /app/src/js-app/apps/01-how-many-ball/components/rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/01-how-many-ball/components/rectangle.js -------------------------------------------------------------------------------- /app/src/js-app/apps/01-how-many-ball/components/rigid-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/01-how-many-ball/components/rigid-body.js -------------------------------------------------------------------------------- /app/src/js-app/apps/01-how-many-ball/components/solver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/01-how-many-ball/components/solver.js -------------------------------------------------------------------------------- /app/src/js-app/apps/01-how-many-ball/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/01-how-many-ball/components/utils.js -------------------------------------------------------------------------------- /app/src/js-app/apps/01-how-many-ball/components/wall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/01-how-many-ball/components/wall.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/app.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/ball.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/components/aabb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/components/aabb.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/components/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/components/ball.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/components/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/components/box.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/components/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/components/camera.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/components/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/components/constants.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/components/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/components/contact.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/components/floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/components/floor.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/components/geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/components/geometry.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/components/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/components/line.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/components/matrix23.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/components/matrix23.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/components/plane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/components/plane.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/components/rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/components/rectangle.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/components/rigid-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/components/rigid-body.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/components/solver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/components/solver.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/components/utils.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/components/wall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/components/wall.js -------------------------------------------------------------------------------- /app/src/js-app/apps/02-four-different-grivities/moving-ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/02-four-different-grivities/moving-ball.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/app.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/ball.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/components/aabb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/components/aabb.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/components/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/components/ball.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/components/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/components/box.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/components/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/components/camera.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/components/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/components/constants.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/components/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/components/contact.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/components/floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/components/floor.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/components/geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/components/geometry.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/components/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/components/line.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/components/matrix23.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/components/matrix23.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/components/plane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/components/plane.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/components/rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/components/rectangle.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/components/rigid-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/components/rigid-body.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/components/solver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/components/solver.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/components/utils.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/components/wall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/components/wall.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/wiper-rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/wiper-rectangle.js -------------------------------------------------------------------------------- /app/src/js-app/apps/03-balls-are-being-wiped/wiper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/03-balls-are-being-wiped/wiper.js -------------------------------------------------------------------------------- /app/src/js-app/apps/04-colorful-balls-animation/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/04-colorful-balls-animation/app.js -------------------------------------------------------------------------------- /app/src/js-app/apps/04-colorful-balls-animation/components/aabb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/04-colorful-balls-animation/components/aabb.js -------------------------------------------------------------------------------- /app/src/js-app/apps/04-colorful-balls-animation/components/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/04-colorful-balls-animation/components/ball.js -------------------------------------------------------------------------------- /app/src/js-app/apps/04-colorful-balls-animation/components/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/04-colorful-balls-animation/components/box.js -------------------------------------------------------------------------------- /app/src/js-app/apps/04-colorful-balls-animation/components/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/04-colorful-balls-animation/components/camera.js -------------------------------------------------------------------------------- /app/src/js-app/apps/04-colorful-balls-animation/components/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/04-colorful-balls-animation/components/constants.js -------------------------------------------------------------------------------- /app/src/js-app/apps/04-colorful-balls-animation/components/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/04-colorful-balls-animation/components/contact.js -------------------------------------------------------------------------------- /app/src/js-app/apps/04-colorful-balls-animation/components/floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/04-colorful-balls-animation/components/floor.js -------------------------------------------------------------------------------- /app/src/js-app/apps/04-colorful-balls-animation/components/geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/04-colorful-balls-animation/components/geometry.js -------------------------------------------------------------------------------- /app/src/js-app/apps/04-colorful-balls-animation/components/hsv2rgb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/04-colorful-balls-animation/components/hsv2rgb.js -------------------------------------------------------------------------------- /app/src/js-app/apps/04-colorful-balls-animation/components/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/04-colorful-balls-animation/components/line.js -------------------------------------------------------------------------------- /app/src/js-app/apps/04-colorful-balls-animation/components/matrix23.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/04-colorful-balls-animation/components/matrix23.js -------------------------------------------------------------------------------- /app/src/js-app/apps/04-colorful-balls-animation/components/plane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/04-colorful-balls-animation/components/plane.js -------------------------------------------------------------------------------- /app/src/js-app/apps/04-colorful-balls-animation/components/rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/04-colorful-balls-animation/components/rectangle.js -------------------------------------------------------------------------------- /app/src/js-app/apps/04-colorful-balls-animation/components/rigid-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/04-colorful-balls-animation/components/rigid-body.js -------------------------------------------------------------------------------- /app/src/js-app/apps/04-colorful-balls-animation/components/solver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/04-colorful-balls-animation/components/solver.js -------------------------------------------------------------------------------- /app/src/js-app/apps/04-colorful-balls-animation/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/04-colorful-balls-animation/components/utils.js -------------------------------------------------------------------------------- /app/src/js-app/apps/04-colorful-balls-animation/components/wall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/04-colorful-balls-animation/components/wall.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/app.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/ball.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/components/aabb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/components/aabb.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/components/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/components/ball.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/components/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/components/box.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/components/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/components/camera.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/components/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/components/constants.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/components/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/components/contact.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/components/floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/components/floor.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/components/geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/components/geometry.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/components/hsv2rgb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/components/hsv2rgb.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/components/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/components/line.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/components/matrix23.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/components/matrix23.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/components/plane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/components/plane.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/components/rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/components/rectangle.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/components/rigid-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/components/rigid-body.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/components/solver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/components/solver.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/components/utils.js -------------------------------------------------------------------------------- /app/src/js-app/apps/05-coordintes-animation/components/wall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/05-coordintes-animation/components/wall.js -------------------------------------------------------------------------------- /app/src/js-app/apps/06-reflection-balls/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/06-reflection-balls/app.js -------------------------------------------------------------------------------- /app/src/js-app/apps/06-reflection-balls/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/06-reflection-balls/ball.js -------------------------------------------------------------------------------- /app/src/js-app/apps/06-reflection-balls/base-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/06-reflection-balls/base-object.js -------------------------------------------------------------------------------- /app/src/js-app/apps/06-reflection-balls/particles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/06-reflection-balls/particles.js -------------------------------------------------------------------------------- /app/src/js-app/apps/07-painting-with-balls/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/07-painting-with-balls/app.js -------------------------------------------------------------------------------- /app/src/js-app/apps/07-painting-with-balls/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/07-painting-with-balls/ball.js -------------------------------------------------------------------------------- /app/src/js-app/apps/07-painting-with-balls/base-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/07-painting-with-balls/base-object.js -------------------------------------------------------------------------------- /app/src/js-app/apps/07-painting-with-balls/particle-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/07-painting-with-balls/particle-manager.js -------------------------------------------------------------------------------- /app/src/js-app/apps/08-weaves/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/08-weaves/app.js -------------------------------------------------------------------------------- /app/src/js-app/apps/08-weaves/impulse-ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/08-weaves/impulse-ball.js -------------------------------------------------------------------------------- /app/src/js-app/apps/08-weaves/main-shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/08-weaves/main-shape.js -------------------------------------------------------------------------------- /app/src/js-app/apps/08-weaves/point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/08-weaves/point.js -------------------------------------------------------------------------------- /app/src/js-app/apps/09-boxes/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/09-boxes/app.js -------------------------------------------------------------------------------- /app/src/js-app/apps/09-boxes/components/aabb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/09-boxes/components/aabb.js -------------------------------------------------------------------------------- /app/src/js-app/apps/09-boxes/components/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/09-boxes/components/ball.js -------------------------------------------------------------------------------- /app/src/js-app/apps/09-boxes/components/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/09-boxes/components/box.js -------------------------------------------------------------------------------- /app/src/js-app/apps/09-boxes/components/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/09-boxes/components/camera.js -------------------------------------------------------------------------------- /app/src/js-app/apps/09-boxes/components/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/09-boxes/components/constants.js -------------------------------------------------------------------------------- /app/src/js-app/apps/09-boxes/components/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/09-boxes/components/contact.js -------------------------------------------------------------------------------- /app/src/js-app/apps/09-boxes/components/floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/09-boxes/components/floor.js -------------------------------------------------------------------------------- /app/src/js-app/apps/09-boxes/components/geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/09-boxes/components/geometry.js -------------------------------------------------------------------------------- /app/src/js-app/apps/09-boxes/components/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/09-boxes/components/line.js -------------------------------------------------------------------------------- /app/src/js-app/apps/09-boxes/components/matrix23.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/09-boxes/components/matrix23.js -------------------------------------------------------------------------------- /app/src/js-app/apps/09-boxes/components/plane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/09-boxes/components/plane.js -------------------------------------------------------------------------------- /app/src/js-app/apps/09-boxes/components/rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/09-boxes/components/rectangle.js -------------------------------------------------------------------------------- /app/src/js-app/apps/09-boxes/components/rigid-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/09-boxes/components/rigid-body.js -------------------------------------------------------------------------------- /app/src/js-app/apps/09-boxes/components/solver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/09-boxes/components/solver.js -------------------------------------------------------------------------------- /app/src/js-app/apps/09-boxes/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/09-boxes/components/utils.js -------------------------------------------------------------------------------- /app/src/js-app/apps/09-boxes/components/wall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/09-boxes/components/wall.js -------------------------------------------------------------------------------- /app/src/js-app/apps/sample/demo-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/apps/sample/demo-app.js -------------------------------------------------------------------------------- /app/src/js-app/component/background-white.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js-app/component/background-white.js -------------------------------------------------------------------------------- /app/src/js/actions/app-action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/actions/app-action.js -------------------------------------------------------------------------------- /app/src/js/components/js/canvas-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/js/canvas-app.js -------------------------------------------------------------------------------- /app/src/js/components/js/canvas-component/background-black.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/js/canvas-component/background-black.js -------------------------------------------------------------------------------- /app/src/js/components/js/canvas-component/scroll-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/js/canvas-component/scroll-bar.js -------------------------------------------------------------------------------- /app/src/js/components/js/canvas-component/work-rope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/js/canvas-component/work-rope.js -------------------------------------------------------------------------------- /app/src/js/components/js/load-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/js/load-view.js -------------------------------------------------------------------------------- /app/src/js/components/jsx/about-content.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/jsx/about-content.jsx -------------------------------------------------------------------------------- /app/src/js/components/jsx/about-content/close-button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/jsx/about-content/close-button.jsx -------------------------------------------------------------------------------- /app/src/js/components/jsx/about-content/link-text.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/jsx/about-content/link-text.jsx -------------------------------------------------------------------------------- /app/src/js/components/jsx/app-content.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/jsx/app-content.jsx -------------------------------------------------------------------------------- /app/src/js/components/jsx/app-contents/work-ball.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/jsx/app-contents/work-ball.jsx -------------------------------------------------------------------------------- /app/src/js/components/jsx/app-contents/work-main-wrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/jsx/app-contents/work-main-wrapper.jsx -------------------------------------------------------------------------------- /app/src/js/components/jsx/app-contents/work-text.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/jsx/app-contents/work-text.jsx -------------------------------------------------------------------------------- /app/src/js/components/jsx/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/jsx/app.jsx -------------------------------------------------------------------------------- /app/src/js/components/jsx/footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/jsx/footer.jsx -------------------------------------------------------------------------------- /app/src/js/components/jsx/footers/footer-fullscreen.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/jsx/footers/footer-fullscreen.jsx -------------------------------------------------------------------------------- /app/src/js/components/jsx/footers/footer-name.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/jsx/footers/footer-name.jsx -------------------------------------------------------------------------------- /app/src/js/components/jsx/footers/footer-title.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/jsx/footers/footer-title.jsx -------------------------------------------------------------------------------- /app/src/js/components/jsx/footers/sns-text.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/jsx/footers/sns-text.jsx -------------------------------------------------------------------------------- /app/src/js/components/jsx/footers/sns-texts/facebook.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/jsx/footers/sns-texts/facebook.jsx -------------------------------------------------------------------------------- /app/src/js/components/jsx/footers/sns-texts/sns.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/jsx/footers/sns-texts/sns.jsx -------------------------------------------------------------------------------- /app/src/js/components/jsx/footers/sns-texts/twitter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/components/jsx/footers/sns-texts/twitter.jsx -------------------------------------------------------------------------------- /app/src/js/data/app-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/data/app-data.js -------------------------------------------------------------------------------- /app/src/js/dispatcher/dispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/dispatcher/dispatcher.js -------------------------------------------------------------------------------- /app/src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/main.js -------------------------------------------------------------------------------- /app/src/js/physics-components/verlet/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/physics-components/verlet/ball.js -------------------------------------------------------------------------------- /app/src/js/physics-components/verlet/composite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/physics-components/verlet/composite.js -------------------------------------------------------------------------------- /app/src/js/physics-components/verlet/constants.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | TIME_STEP : 1 / 30 3 | }; 4 | -------------------------------------------------------------------------------- /app/src/js/physics-components/verlet/constraints/angle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/physics-components/verlet/constraints/angle.js -------------------------------------------------------------------------------- /app/src/js/physics-components/verlet/constraints/distance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/physics-components/verlet/constraints/distance.js -------------------------------------------------------------------------------- /app/src/js/physics-components/verlet/constraints/pin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/physics-components/verlet/constraints/pin.js -------------------------------------------------------------------------------- /app/src/js/physics-components/verlet/particle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/physics-components/verlet/particle.js -------------------------------------------------------------------------------- /app/src/js/physics-components/verlet/verlet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/physics-components/verlet/verlet.js -------------------------------------------------------------------------------- /app/src/js/router/app-router.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/router/app-router.jsx -------------------------------------------------------------------------------- /app/src/js/router/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/router/history.js -------------------------------------------------------------------------------- /app/src/js/router/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/router/router.js -------------------------------------------------------------------------------- /app/src/js/router/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/router/utils.js -------------------------------------------------------------------------------- /app/src/js/stores/app-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/stores/app-store.js -------------------------------------------------------------------------------- /app/src/js/stores/work-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/stores/work-store.js -------------------------------------------------------------------------------- /app/src/js/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/utils/constants.js -------------------------------------------------------------------------------- /app/src/js/utils/constants_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/utils/constants_app.js -------------------------------------------------------------------------------- /app/src/js/utils/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/utils/keyboard.js -------------------------------------------------------------------------------- /app/src/js/utils/ticker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/utils/ticker.js -------------------------------------------------------------------------------- /app/src/js/utils/window-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/js/utils/window-event.js -------------------------------------------------------------------------------- /app/src/sass/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/sass/base/_base.scss -------------------------------------------------------------------------------- /app/src/sass/base/_constants.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/sass/base/_constants.scss -------------------------------------------------------------------------------- /app/src/sass/base/_font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/sass/base/_font.scss -------------------------------------------------------------------------------- /app/src/sass/components/_about-content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/sass/components/_about-content.scss -------------------------------------------------------------------------------- /app/src/sass/components/_flip-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/sass/components/_flip-button.scss -------------------------------------------------------------------------------- /app/src/sass/components/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/sass/components/_footer.scss -------------------------------------------------------------------------------- /app/src/sass/components/_link_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/sass/components/_link_text.scss -------------------------------------------------------------------------------- /app/src/sass/components/_loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/sass/components/_loader.scss -------------------------------------------------------------------------------- /app/src/sass/components/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/sass/components/_main.scss -------------------------------------------------------------------------------- /app/src/sass/components/_works.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/sass/components/_works.scss -------------------------------------------------------------------------------- /app/src/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/sass/main.scss -------------------------------------------------------------------------------- /app/src/sass/utils/_easing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/sass/utils/_easing.scss -------------------------------------------------------------------------------- /app/src/sass/utils/_error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/sass/utils/_error.scss -------------------------------------------------------------------------------- /app/src/sass/utils/_mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/sass/utils/_mixin.scss -------------------------------------------------------------------------------- /app/src/sass/utils/extends/_extends.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/app/src/sass/utils/extends/_extends.scss -------------------------------------------------------------------------------- /design/design.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiSpecial/interaction-with-artificial-physics-dev/HEAD/design/design.sketch --------------------------------------------------------------------------------