├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── README.md ├── package.json ├── screenshots └── screenshot.gif ├── src ├── ball.ts ├── index.html ├── main.ts ├── random.ts ├── vector.ts └── vite-env.d.ts ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonradLinkowski/AntiCollision/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .cache 3 | dist 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonradLinkowski/AntiCollision/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonradLinkowski/AntiCollision/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonradLinkowski/AntiCollision/HEAD/screenshots/screenshot.gif -------------------------------------------------------------------------------- /src/ball.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonradLinkowski/AntiCollision/HEAD/src/ball.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonradLinkowski/AntiCollision/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonradLinkowski/AntiCollision/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonradLinkowski/AntiCollision/HEAD/src/random.ts -------------------------------------------------------------------------------- /src/vector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonradLinkowski/AntiCollision/HEAD/src/vector.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonradLinkowski/AntiCollision/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonradLinkowski/AntiCollision/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonradLinkowski/AntiCollision/HEAD/yarn.lock --------------------------------------------------------------------------------