├── .github └── workflows │ └── auto-publish.yml ├── .gitignore ├── .pr-preview.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── accessibility-considerations-explainer.md ├── designdocs ├── dynamic-viewport-scaling-privacy-security.md ├── navigation.md ├── privacy-design.md └── session-creation.md ├── explainer.md ├── favicon-32x32.png ├── favicon-96x96.png ├── favicon.ico ├── images ├── frame-of-reference-flow-chart.JPG ├── rigid_matrix.svg ├── rotation_matrix.svg ├── spec-logo.png └── translation_matrix.svg ├── index.bs ├── input-explainer.md ├── package.json ├── privacy-security-explainer.md ├── spatial-tracking-explainer.md ├── w3c.json └── webvr-migration.md /.github/workflows/auto-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/.github/workflows/auto-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .DS_Store 3 | node_modules 4 | npm-debug*.log* 5 | index.html 6 | -------------------------------------------------------------------------------- /.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/.pr-preview.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/README.md -------------------------------------------------------------------------------- /accessibility-considerations-explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/accessibility-considerations-explainer.md -------------------------------------------------------------------------------- /designdocs/dynamic-viewport-scaling-privacy-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/designdocs/dynamic-viewport-scaling-privacy-security.md -------------------------------------------------------------------------------- /designdocs/navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/designdocs/navigation.md -------------------------------------------------------------------------------- /designdocs/privacy-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/designdocs/privacy-design.md -------------------------------------------------------------------------------- /designdocs/session-creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/designdocs/session-creation.md -------------------------------------------------------------------------------- /explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/explainer.md -------------------------------------------------------------------------------- /favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/favicon-32x32.png -------------------------------------------------------------------------------- /favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/favicon-96x96.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/favicon.ico -------------------------------------------------------------------------------- /images/frame-of-reference-flow-chart.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/images/frame-of-reference-flow-chart.JPG -------------------------------------------------------------------------------- /images/rigid_matrix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/images/rigid_matrix.svg -------------------------------------------------------------------------------- /images/rotation_matrix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/images/rotation_matrix.svg -------------------------------------------------------------------------------- /images/spec-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/images/spec-logo.png -------------------------------------------------------------------------------- /images/translation_matrix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/images/translation_matrix.svg -------------------------------------------------------------------------------- /index.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/index.bs -------------------------------------------------------------------------------- /input-explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/input-explainer.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/package.json -------------------------------------------------------------------------------- /privacy-security-explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/privacy-security-explainer.md -------------------------------------------------------------------------------- /spatial-tracking-explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/spatial-tracking-explainer.md -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/w3c.json -------------------------------------------------------------------------------- /webvr-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immersive-web/webxr/HEAD/webvr-migration.md --------------------------------------------------------------------------------