├── .gitignore ├── README.md ├── client.ts ├── constants.ts ├── depth.ts ├── generate.ts ├── notes.md ├── package.json ├── photos.ts ├── pnpm-lock.yaml ├── preview.html ├── style.css ├── tsconfig.json ├── viewer-3d.html └── viewer-3d.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/eye-ballz/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/eye-ballz/HEAD/README.md -------------------------------------------------------------------------------- /client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/eye-ballz/HEAD/client.ts -------------------------------------------------------------------------------- /constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/eye-ballz/HEAD/constants.ts -------------------------------------------------------------------------------- /depth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/eye-ballz/HEAD/depth.ts -------------------------------------------------------------------------------- /generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/eye-ballz/HEAD/generate.ts -------------------------------------------------------------------------------- /notes.md: -------------------------------------------------------------------------------- 1 | 1. added the roll 2 | 2. Converted to a video 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/eye-ballz/HEAD/package.json -------------------------------------------------------------------------------- /photos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/eye-ballz/HEAD/photos.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/eye-ballz/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/eye-ballz/HEAD/preview.html -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/eye-ballz/HEAD/style.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/eye-ballz/HEAD/tsconfig.json -------------------------------------------------------------------------------- /viewer-3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/eye-ballz/HEAD/viewer-3d.html -------------------------------------------------------------------------------- /viewer-3d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/eye-ballz/HEAD/viewer-3d.ts --------------------------------------------------------------------------------