├── .github └── screenshot.png ├── .gitignore ├── README.md ├── dam.proto ├── package.json └── parse.js /.github/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codespacehelp/matterport-decoder/HEAD/.github/screenshot.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | assets/ 2 | node_modules/ 3 | .DS_Store 4 | 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codespacehelp/matterport-decoder/HEAD/README.md -------------------------------------------------------------------------------- /dam.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codespacehelp/matterport-decoder/HEAD/dam.proto -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codespacehelp/matterport-decoder/HEAD/package.json -------------------------------------------------------------------------------- /parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codespacehelp/matterport-decoder/HEAD/parse.js --------------------------------------------------------------------------------