├── .eslintrc.js ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── build-nginx-image.yml ├── .gitignore ├── .gitmodules ├── .nginx-dockerfile ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── angular.json ├── bun.lock ├── extract-translations.ts ├── package.json ├── src ├── .browserslistrc ├── @types │ └── webglobject │ │ ├── README.md │ │ └── index.d.ts ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.ts │ ├── app.config.ts │ ├── app.plugin.ts │ ├── components │ │ ├── compilation-browser │ │ │ ├── compilation-browser.component.html │ │ │ ├── compilation-browser.component.scss │ │ │ └── compilation-browser.component.ts │ │ ├── dialogs │ │ │ ├── dialog-annotation-editor │ │ │ │ ├── dialog-annotation-editor.component.html │ │ │ │ ├── dialog-annotation-editor.component.scss │ │ │ │ └── dialog-annotation-editor.component.ts │ │ │ ├── dialog-login │ │ │ │ ├── login.component.html │ │ │ │ ├── login.component.scss │ │ │ │ └── login.component.ts │ │ │ ├── dialog-meshsettings │ │ │ │ ├── dialog-meshsettings.component.html │ │ │ │ ├── dialog-meshsettings.component.scss │ │ │ │ └── dialog-meshsettings.component.ts │ │ │ ├── dialog-password │ │ │ │ ├── dialog-password.component.html │ │ │ │ ├── dialog-password.component.scss │ │ │ │ └── dialog-password.component.ts │ │ │ └── dialog-share-annotation │ │ │ │ ├── dialog-share-annotation.component.html │ │ │ │ ├── dialog-share-annotation.component.scss │ │ │ │ └── dialog-share-annotation.component.ts │ │ ├── entity-feature-annotations │ │ │ ├── annotation-media-browser │ │ │ │ ├── media-browser.component.html │ │ │ │ ├── media-browser.component.scss │ │ │ │ └── media-browser.component.ts │ │ │ ├── annotation │ │ │ │ ├── annotation-for-editor.component.html │ │ │ │ ├── annotation-for-editor.component.scss │ │ │ │ ├── annotation-for-editor.component.ts │ │ │ │ ├── annotation-marker.component.html │ │ │ │ ├── annotation-marker.component.scss │ │ │ │ ├── annotation-marker.component.ts │ │ │ │ ├── annotation.component.html │ │ │ │ ├── annotation.component.scss │ │ │ │ └── annotation.component.ts │ │ │ ├── annotations-editor │ │ │ │ ├── annotations-editor.component.html │ │ │ │ ├── annotations-editor.component.scss │ │ │ │ └── annotations-editor.component.ts │ │ │ └── annotationwalkthrough │ │ │ │ ├── annotationwalkthrough.component.html │ │ │ │ ├── annotationwalkthrough.component.scss │ │ │ │ └── annotationwalkthrough.component.ts │ │ ├── entity-feature-settings │ │ │ ├── entity-feature-settings-lights │ │ │ │ ├── entity-feature-settings-lights.component.html │ │ │ │ ├── entity-feature-settings-lights.component.scss │ │ │ │ └── entity-feature-settings-lights.component.ts │ │ │ ├── entity-feature-settings-mesh │ │ │ │ ├── entity-feature-settings-mesh.component.html │ │ │ │ ├── entity-feature-settings-mesh.component.scss │ │ │ │ └── entity-feature-settings-mesh.component.ts │ │ │ ├── entity-feature-settings.component.html │ │ │ ├── entity-feature-settings.component.scss │ │ │ └── entity-feature-settings.component.ts │ │ ├── guide │ │ │ ├── guide.component.html │ │ │ ├── guide.component.scss │ │ │ └── guide.component.ts │ │ ├── loadingscreen │ │ │ ├── loadingscreen.component.html │ │ │ ├── loadingscreen.component.scss │ │ │ └── loadingscreen.component.ts │ │ ├── markdown-preview │ │ │ ├── markdown-preview.component.html │ │ │ ├── markdown-preview.component.scss │ │ │ └── markdown-preview.component.ts │ │ ├── media-player-menu │ │ │ ├── media-player-menu.component.html │ │ │ ├── media-player-menu.component.scss │ │ │ └── media-player-menu.component.ts │ │ ├── menu │ │ │ ├── camera-settings │ │ │ │ ├── camera-settings.component.html │ │ │ │ ├── camera-settings.component.scss │ │ │ │ └── camera-settings.component.ts │ │ │ ├── menu.component.css │ │ │ ├── menu.component.html │ │ │ ├── menu.component.scss │ │ │ └── menu.component.ts │ │ ├── point-cloud-settings │ │ │ ├── point-cloud-settings.component.html │ │ │ ├── point-cloud-settings.component.scss │ │ │ └── point-cloud-settings.component.ts │ │ ├── render-canvas │ │ │ ├── render-canvas.component.html │ │ │ ├── render-canvas.component.scss │ │ │ └── render-canvas.component.ts │ │ ├── scene │ │ │ ├── scene.component.html │ │ │ ├── scene.component.scss │ │ │ └── scene.component.ts │ │ ├── sidenav-menu │ │ │ ├── sidenav-menu.component.html │ │ │ ├── sidenav-menu.component.scss │ │ │ └── sidenav-menu.component.ts │ │ └── sidenav │ │ │ ├── sidenav.component.html │ │ │ ├── sidenav.component.scss │ │ │ └── sidenav.component.ts │ ├── helpers │ │ ├── base64-helper.ts │ │ ├── iiif-data-helper.ts │ │ └── index.ts │ ├── interceptors │ │ └── jwt-interceptor.ts │ ├── pipes │ │ ├── fix-image-url.pipe.ts │ │ ├── media-type.pipe.ts │ │ └── translate.pipe.ts │ └── services │ │ ├── annotation │ │ ├── annotation.service.ts │ │ └── visual3DElements.ts │ │ ├── babylon │ │ ├── babylon.service.ts │ │ ├── camera-handler.ts │ │ ├── container.interfaces.ts │ │ ├── importers │ │ │ ├── common │ │ │ │ ├── point-cloud-importer.ts │ │ │ │ └── worker-pool.ts │ │ │ ├── copc │ │ │ │ ├── copc-importer.ts │ │ │ │ ├── copc-materials.ts │ │ │ │ ├── copc.worker.ts │ │ │ │ └── worker-pool.ts │ │ │ └── ept │ │ │ │ ├── ept-importer.ts │ │ │ │ ├── ept.worker.ts │ │ │ │ ├── las-helper.ts │ │ │ │ ├── laz-perf.ts │ │ │ │ └── worker-pool.ts │ │ ├── loadingscreen.ts │ │ └── strategies │ │ │ ├── loading-strategies.ts │ │ │ └── render-strategies.ts │ │ ├── backend │ │ └── backend.service.ts │ │ ├── entitysettings │ │ ├── entitysettings.service.ts │ │ └── visualUIHelper.ts │ │ ├── light │ │ └── light.service.ts │ │ ├── localforage │ │ └── localforage.service.ts │ │ ├── message │ │ └── message.service.ts │ │ ├── overlay │ │ └── overlay.service.ts │ │ ├── post-message │ │ └── post-message.service.ts │ │ ├── processing │ │ └── processing.service.ts │ │ ├── translate │ │ └── translate.service.ts │ │ └── userdata │ │ └── userdata.service.ts ├── assets │ ├── .gitkeep │ ├── annotations │ │ └── annotations.ts │ ├── defaults.ts │ ├── entities │ │ └── entities.ts │ ├── exampleDataAnnotations │ │ └── images │ │ │ └── anno1.png │ ├── fonts │ │ ├── MaterialIcons │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ └── MaterialIcons.css │ │ ├── MaterialSymbols │ │ │ ├── MaterialSymbolsOutlined.scss │ │ │ ├── MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].ttf │ │ │ └── MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].woff2 │ │ └── OpenSans │ │ │ ├── OpenSans-Italic-VariableFont_wdth,wght.ttf │ │ │ ├── OpenSans-VariableFont_wdth,wght.ttf │ │ │ └── OpenSans.css │ ├── i18n │ │ ├── en.json │ │ └── mn.json │ ├── icons │ │ └── guide │ │ │ ├── left_click_move.svg │ │ │ ├── right_click_move.svg │ │ │ └── scroll_wheel.svg │ ├── image-not-found.png │ ├── img │ │ ├── BY.png │ │ ├── BYNC.png │ │ ├── BYNCND.png │ │ ├── BYNCSA.png │ │ ├── BYND.png │ │ ├── BYSA.png │ │ ├── MIT.png │ │ ├── google-cardboard.svg │ │ ├── icon.png │ │ ├── kompakkt-icon.png │ │ ├── kompakkt-logo.png │ │ ├── logo-background.png │ │ ├── logo-background.svg │ │ ├── logo-with-stroke.png │ │ ├── preview-default-annotation.png │ │ └── preview-fallback-annotation.png │ ├── models │ │ ├── KompakktLogoRotate.glb │ │ ├── KompakktLogoShake.glb │ │ ├── kompakkt.babylon │ │ ├── kompakkt.glb │ │ └── sketch_cat │ │ │ ├── scene.bin │ │ │ ├── scene.gltf │ │ │ └── textures │ │ │ ├── Material_105_baseColor.png │ │ │ ├── Material_81_baseColor.png │ │ │ └── Material_93_baseColor.png │ ├── settings │ │ └── settings.ts │ └── textures │ │ ├── backgrounds │ │ └── darkgrey.jpg │ │ └── skybox │ │ ├── blue │ │ ├── blue_nx.jpg │ │ ├── blue_ny.jpg │ │ ├── blue_nz.jpg │ │ ├── blue_px.jpg │ │ ├── blue_py.jpg │ │ └── blue_pz.jpg │ │ ├── darkgrey │ │ ├── darkgrey_nx.jpg │ │ ├── darkgrey_ny.jpg │ │ ├── darkgrey_nz.jpg │ │ ├── darkgrey_px.jpg │ │ ├── darkgrey_py.jpg │ │ └── darkgrey_pz.jpg │ │ ├── lightgrey │ │ ├── lightgrey_nx.jpg │ │ ├── lightgrey_ny.jpg │ │ ├── lightgrey_nz.jpg │ │ ├── lightgrey_px.jpg │ │ ├── lightgrey_py.jpg │ │ └── lightgrey_pz.jpg │ │ ├── marineblue │ │ ├── marineblue_nx.jpg │ │ ├── marineblue_ny.jpg │ │ ├── marineblue_nz.jpg │ │ ├── marineblue_px.jpg │ │ ├── marineblue_py.jpg │ │ └── marineblue_pz.jpg │ │ └── white │ │ ├── white_nx.jpg │ │ ├── white_ny.jpg │ │ ├── white_nz.jpg │ │ ├── white_px.jpg │ │ ├── white_py.jpg │ │ └── white_pz.jpg ├── environment.docker.ts ├── environment.ts ├── favicon.ico ├── global-shim.ts ├── index.html ├── laz-perf.wasm ├── main.ts ├── styles.scss ├── theme.scss └── tslint.json ├── tsconfig.app.json ├── tsconfig.json └── tslint.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build-nginx-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/.github/workflows/build-nginx-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/.gitmodules -------------------------------------------------------------------------------- /.nginx-dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/.nginx-dockerfile -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | e2e 3 | node_modules 4 | .git 5 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/angular.json -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/bun.lock -------------------------------------------------------------------------------- /extract-translations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/extract-translations.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/package.json -------------------------------------------------------------------------------- /src/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/.browserslistrc -------------------------------------------------------------------------------- /src/@types/webglobject/README.md: -------------------------------------------------------------------------------- 1 | Workaround until Babylon.js v5. 2 | -------------------------------------------------------------------------------- /src/@types/webglobject/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/@types/webglobject/index.d.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | #appcontainer { 2 | height: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/app.config.ts -------------------------------------------------------------------------------- /src/app/app.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/app.plugin.ts -------------------------------------------------------------------------------- /src/app/components/compilation-browser/compilation-browser.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/compilation-browser/compilation-browser.component.html -------------------------------------------------------------------------------- /src/app/components/compilation-browser/compilation-browser.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/compilation-browser/compilation-browser.component.scss -------------------------------------------------------------------------------- /src/app/components/compilation-browser/compilation-browser.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/compilation-browser/compilation-browser.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/dialog-annotation-editor/dialog-annotation-editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/dialogs/dialog-annotation-editor/dialog-annotation-editor.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/dialog-annotation-editor/dialog-annotation-editor.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/dialogs/dialog-annotation-editor/dialog-annotation-editor.component.scss -------------------------------------------------------------------------------- /src/app/components/dialogs/dialog-annotation-editor/dialog-annotation-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/dialogs/dialog-annotation-editor/dialog-annotation-editor.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/dialog-login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/dialogs/dialog-login/login.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/dialog-login/login.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/dialogs/dialog-login/login.component.scss -------------------------------------------------------------------------------- /src/app/components/dialogs/dialog-login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/dialogs/dialog-login/login.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/dialog-meshsettings/dialog-meshsettings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/dialogs/dialog-meshsettings/dialog-meshsettings.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/dialog-meshsettings/dialog-meshsettings.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/dialogs/dialog-meshsettings/dialog-meshsettings.component.scss -------------------------------------------------------------------------------- /src/app/components/dialogs/dialog-meshsettings/dialog-meshsettings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/dialogs/dialog-meshsettings/dialog-meshsettings.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/dialog-password/dialog-password.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/dialogs/dialog-password/dialog-password.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/dialog-password/dialog-password.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/dialogs/dialog-password/dialog-password.component.scss -------------------------------------------------------------------------------- /src/app/components/dialogs/dialog-password/dialog-password.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/dialogs/dialog-password/dialog-password.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/dialog-share-annotation/dialog-share-annotation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/dialogs/dialog-share-annotation/dialog-share-annotation.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/dialog-share-annotation/dialog-share-annotation.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/dialogs/dialog-share-annotation/dialog-share-annotation.component.scss -------------------------------------------------------------------------------- /src/app/components/dialogs/dialog-share-annotation/dialog-share-annotation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/dialogs/dialog-share-annotation/dialog-share-annotation.component.ts -------------------------------------------------------------------------------- /src/app/components/entity-feature-annotations/annotation-media-browser/media-browser.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-annotations/annotation-media-browser/media-browser.component.html -------------------------------------------------------------------------------- /src/app/components/entity-feature-annotations/annotation-media-browser/media-browser.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-annotations/annotation-media-browser/media-browser.component.scss -------------------------------------------------------------------------------- /src/app/components/entity-feature-annotations/annotation-media-browser/media-browser.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-annotations/annotation-media-browser/media-browser.component.ts -------------------------------------------------------------------------------- /src/app/components/entity-feature-annotations/annotation/annotation-for-editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-annotations/annotation/annotation-for-editor.component.html -------------------------------------------------------------------------------- /src/app/components/entity-feature-annotations/annotation/annotation-for-editor.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-annotations/annotation/annotation-for-editor.component.scss -------------------------------------------------------------------------------- /src/app/components/entity-feature-annotations/annotation/annotation-for-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-annotations/annotation/annotation-for-editor.component.ts -------------------------------------------------------------------------------- /src/app/components/entity-feature-annotations/annotation/annotation-marker.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-annotations/annotation/annotation-marker.component.html -------------------------------------------------------------------------------- /src/app/components/entity-feature-annotations/annotation/annotation-marker.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-annotations/annotation/annotation-marker.component.scss -------------------------------------------------------------------------------- /src/app/components/entity-feature-annotations/annotation/annotation-marker.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-annotations/annotation/annotation-marker.component.ts -------------------------------------------------------------------------------- /src/app/components/entity-feature-annotations/annotation/annotation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-annotations/annotation/annotation.component.html -------------------------------------------------------------------------------- /src/app/components/entity-feature-annotations/annotation/annotation.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-annotations/annotation/annotation.component.scss -------------------------------------------------------------------------------- /src/app/components/entity-feature-annotations/annotation/annotation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-annotations/annotation/annotation.component.ts -------------------------------------------------------------------------------- /src/app/components/entity-feature-annotations/annotations-editor/annotations-editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-annotations/annotations-editor/annotations-editor.component.html -------------------------------------------------------------------------------- /src/app/components/entity-feature-annotations/annotations-editor/annotations-editor.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-annotations/annotations-editor/annotations-editor.component.scss -------------------------------------------------------------------------------- /src/app/components/entity-feature-annotations/annotations-editor/annotations-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-annotations/annotations-editor/annotations-editor.component.ts -------------------------------------------------------------------------------- /src/app/components/entity-feature-annotations/annotationwalkthrough/annotationwalkthrough.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-annotations/annotationwalkthrough/annotationwalkthrough.component.html -------------------------------------------------------------------------------- /src/app/components/entity-feature-annotations/annotationwalkthrough/annotationwalkthrough.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-annotations/annotationwalkthrough/annotationwalkthrough.component.scss -------------------------------------------------------------------------------- /src/app/components/entity-feature-annotations/annotationwalkthrough/annotationwalkthrough.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-annotations/annotationwalkthrough/annotationwalkthrough.component.ts -------------------------------------------------------------------------------- /src/app/components/entity-feature-settings/entity-feature-settings-lights/entity-feature-settings-lights.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-settings/entity-feature-settings-lights/entity-feature-settings-lights.component.html -------------------------------------------------------------------------------- /src/app/components/entity-feature-settings/entity-feature-settings-lights/entity-feature-settings-lights.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/entity-feature-settings/entity-feature-settings-lights/entity-feature-settings-lights.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-settings/entity-feature-settings-lights/entity-feature-settings-lights.component.ts -------------------------------------------------------------------------------- /src/app/components/entity-feature-settings/entity-feature-settings-mesh/entity-feature-settings-mesh.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-settings/entity-feature-settings-mesh/entity-feature-settings-mesh.component.html -------------------------------------------------------------------------------- /src/app/components/entity-feature-settings/entity-feature-settings-mesh/entity-feature-settings-mesh.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-settings/entity-feature-settings-mesh/entity-feature-settings-mesh.component.scss -------------------------------------------------------------------------------- /src/app/components/entity-feature-settings/entity-feature-settings-mesh/entity-feature-settings-mesh.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-settings/entity-feature-settings-mesh/entity-feature-settings-mesh.component.ts -------------------------------------------------------------------------------- /src/app/components/entity-feature-settings/entity-feature-settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-settings/entity-feature-settings.component.html -------------------------------------------------------------------------------- /src/app/components/entity-feature-settings/entity-feature-settings.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-settings/entity-feature-settings.component.scss -------------------------------------------------------------------------------- /src/app/components/entity-feature-settings/entity-feature-settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/entity-feature-settings/entity-feature-settings.component.ts -------------------------------------------------------------------------------- /src/app/components/guide/guide.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/guide/guide.component.html -------------------------------------------------------------------------------- /src/app/components/guide/guide.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/guide/guide.component.scss -------------------------------------------------------------------------------- /src/app/components/guide/guide.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/guide/guide.component.ts -------------------------------------------------------------------------------- /src/app/components/loadingscreen/loadingscreen.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/loadingscreen/loadingscreen.component.html -------------------------------------------------------------------------------- /src/app/components/loadingscreen/loadingscreen.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/loadingscreen/loadingscreen.component.scss -------------------------------------------------------------------------------- /src/app/components/loadingscreen/loadingscreen.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/loadingscreen/loadingscreen.component.ts -------------------------------------------------------------------------------- /src/app/components/markdown-preview/markdown-preview.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/markdown-preview/markdown-preview.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/markdown-preview/markdown-preview.component.scss -------------------------------------------------------------------------------- /src/app/components/markdown-preview/markdown-preview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/markdown-preview/markdown-preview.component.ts -------------------------------------------------------------------------------- /src/app/components/media-player-menu/media-player-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/media-player-menu/media-player-menu.component.html -------------------------------------------------------------------------------- /src/app/components/media-player-menu/media-player-menu.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/media-player-menu/media-player-menu.component.scss -------------------------------------------------------------------------------- /src/app/components/media-player-menu/media-player-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/media-player-menu/media-player-menu.component.ts -------------------------------------------------------------------------------- /src/app/components/menu/camera-settings/camera-settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/menu/camera-settings/camera-settings.component.html -------------------------------------------------------------------------------- /src/app/components/menu/camera-settings/camera-settings.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/menu/camera-settings/camera-settings.component.scss -------------------------------------------------------------------------------- /src/app/components/menu/camera-settings/camera-settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/menu/camera-settings/camera-settings.component.ts -------------------------------------------------------------------------------- /src/app/components/menu/menu.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/menu/menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/menu/menu.component.html -------------------------------------------------------------------------------- /src/app/components/menu/menu.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/menu/menu.component.scss -------------------------------------------------------------------------------- /src/app/components/menu/menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/menu/menu.component.ts -------------------------------------------------------------------------------- /src/app/components/point-cloud-settings/point-cloud-settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/point-cloud-settings/point-cloud-settings.component.html -------------------------------------------------------------------------------- /src/app/components/point-cloud-settings/point-cloud-settings.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/point-cloud-settings/point-cloud-settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/point-cloud-settings/point-cloud-settings.component.ts -------------------------------------------------------------------------------- /src/app/components/render-canvas/render-canvas.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/render-canvas/render-canvas.component.html -------------------------------------------------------------------------------- /src/app/components/render-canvas/render-canvas.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/render-canvas/render-canvas.component.scss -------------------------------------------------------------------------------- /src/app/components/render-canvas/render-canvas.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/render-canvas/render-canvas.component.ts -------------------------------------------------------------------------------- /src/app/components/scene/scene.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/scene/scene.component.html -------------------------------------------------------------------------------- /src/app/components/scene/scene.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/scene/scene.component.scss -------------------------------------------------------------------------------- /src/app/components/scene/scene.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/scene/scene.component.ts -------------------------------------------------------------------------------- /src/app/components/sidenav-menu/sidenav-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/sidenav-menu/sidenav-menu.component.html -------------------------------------------------------------------------------- /src/app/components/sidenav-menu/sidenav-menu.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/sidenav-menu/sidenav-menu.component.scss -------------------------------------------------------------------------------- /src/app/components/sidenav-menu/sidenav-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/sidenav-menu/sidenav-menu.component.ts -------------------------------------------------------------------------------- /src/app/components/sidenav/sidenav.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/sidenav/sidenav.component.html -------------------------------------------------------------------------------- /src/app/components/sidenav/sidenav.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/sidenav/sidenav.component.scss -------------------------------------------------------------------------------- /src/app/components/sidenav/sidenav.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/components/sidenav/sidenav.component.ts -------------------------------------------------------------------------------- /src/app/helpers/base64-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/helpers/base64-helper.ts -------------------------------------------------------------------------------- /src/app/helpers/iiif-data-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/helpers/iiif-data-helper.ts -------------------------------------------------------------------------------- /src/app/helpers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './base64-helper'; 2 | -------------------------------------------------------------------------------- /src/app/interceptors/jwt-interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/interceptors/jwt-interceptor.ts -------------------------------------------------------------------------------- /src/app/pipes/fix-image-url.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/pipes/fix-image-url.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/media-type.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/pipes/media-type.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/translate.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/pipes/translate.pipe.ts -------------------------------------------------------------------------------- /src/app/services/annotation/annotation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/annotation/annotation.service.ts -------------------------------------------------------------------------------- /src/app/services/annotation/visual3DElements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/annotation/visual3DElements.ts -------------------------------------------------------------------------------- /src/app/services/babylon/babylon.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/babylon/babylon.service.ts -------------------------------------------------------------------------------- /src/app/services/babylon/camera-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/babylon/camera-handler.ts -------------------------------------------------------------------------------- /src/app/services/babylon/container.interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/babylon/container.interfaces.ts -------------------------------------------------------------------------------- /src/app/services/babylon/importers/common/point-cloud-importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/babylon/importers/common/point-cloud-importer.ts -------------------------------------------------------------------------------- /src/app/services/babylon/importers/common/worker-pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/babylon/importers/common/worker-pool.ts -------------------------------------------------------------------------------- /src/app/services/babylon/importers/copc/copc-importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/babylon/importers/copc/copc-importer.ts -------------------------------------------------------------------------------- /src/app/services/babylon/importers/copc/copc-materials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/babylon/importers/copc/copc-materials.ts -------------------------------------------------------------------------------- /src/app/services/babylon/importers/copc/copc.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/babylon/importers/copc/copc.worker.ts -------------------------------------------------------------------------------- /src/app/services/babylon/importers/copc/worker-pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/babylon/importers/copc/worker-pool.ts -------------------------------------------------------------------------------- /src/app/services/babylon/importers/ept/ept-importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/babylon/importers/ept/ept-importer.ts -------------------------------------------------------------------------------- /src/app/services/babylon/importers/ept/ept.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/babylon/importers/ept/ept.worker.ts -------------------------------------------------------------------------------- /src/app/services/babylon/importers/ept/las-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/babylon/importers/ept/las-helper.ts -------------------------------------------------------------------------------- /src/app/services/babylon/importers/ept/laz-perf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/babylon/importers/ept/laz-perf.ts -------------------------------------------------------------------------------- /src/app/services/babylon/importers/ept/worker-pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/babylon/importers/ept/worker-pool.ts -------------------------------------------------------------------------------- /src/app/services/babylon/loadingscreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/babylon/loadingscreen.ts -------------------------------------------------------------------------------- /src/app/services/babylon/strategies/loading-strategies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/babylon/strategies/loading-strategies.ts -------------------------------------------------------------------------------- /src/app/services/babylon/strategies/render-strategies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/babylon/strategies/render-strategies.ts -------------------------------------------------------------------------------- /src/app/services/backend/backend.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/backend/backend.service.ts -------------------------------------------------------------------------------- /src/app/services/entitysettings/entitysettings.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/entitysettings/entitysettings.service.ts -------------------------------------------------------------------------------- /src/app/services/entitysettings/visualUIHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/entitysettings/visualUIHelper.ts -------------------------------------------------------------------------------- /src/app/services/light/light.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/light/light.service.ts -------------------------------------------------------------------------------- /src/app/services/localforage/localforage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/localforage/localforage.service.ts -------------------------------------------------------------------------------- /src/app/services/message/message.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/message/message.service.ts -------------------------------------------------------------------------------- /src/app/services/overlay/overlay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/overlay/overlay.service.ts -------------------------------------------------------------------------------- /src/app/services/post-message/post-message.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/post-message/post-message.service.ts -------------------------------------------------------------------------------- /src/app/services/processing/processing.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/processing/processing.service.ts -------------------------------------------------------------------------------- /src/app/services/translate/translate.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/translate/translate.service.ts -------------------------------------------------------------------------------- /src/app/services/userdata/userdata.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/app/services/userdata/userdata.service.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/annotations/annotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/annotations/annotations.ts -------------------------------------------------------------------------------- /src/assets/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/defaults.ts -------------------------------------------------------------------------------- /src/assets/entities/entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/entities/entities.ts -------------------------------------------------------------------------------- /src/assets/exampleDataAnnotations/images/anno1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/exampleDataAnnotations/images/anno1.png -------------------------------------------------------------------------------- /src/assets/fonts/MaterialIcons/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/fonts/MaterialIcons/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/MaterialIcons/MaterialIcons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/fonts/MaterialIcons/MaterialIcons.css -------------------------------------------------------------------------------- /src/assets/fonts/MaterialSymbols/MaterialSymbolsOutlined.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/fonts/MaterialSymbols/MaterialSymbolsOutlined.scss -------------------------------------------------------------------------------- /src/assets/fonts/MaterialSymbols/MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/fonts/MaterialSymbols/MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].ttf -------------------------------------------------------------------------------- /src/assets/fonts/MaterialSymbols/MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/fonts/MaterialSymbols/MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].woff2 -------------------------------------------------------------------------------- /src/assets/fonts/OpenSans/OpenSans-Italic-VariableFont_wdth,wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/fonts/OpenSans/OpenSans-Italic-VariableFont_wdth,wght.ttf -------------------------------------------------------------------------------- /src/assets/fonts/OpenSans/OpenSans-VariableFont_wdth,wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/fonts/OpenSans/OpenSans-VariableFont_wdth,wght.ttf -------------------------------------------------------------------------------- /src/assets/fonts/OpenSans/OpenSans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/fonts/OpenSans/OpenSans.css -------------------------------------------------------------------------------- /src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/i18n/en.json -------------------------------------------------------------------------------- /src/assets/i18n/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/i18n/mn.json -------------------------------------------------------------------------------- /src/assets/icons/guide/left_click_move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/icons/guide/left_click_move.svg -------------------------------------------------------------------------------- /src/assets/icons/guide/right_click_move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/icons/guide/right_click_move.svg -------------------------------------------------------------------------------- /src/assets/icons/guide/scroll_wheel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/icons/guide/scroll_wheel.svg -------------------------------------------------------------------------------- /src/assets/image-not-found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/image-not-found.png -------------------------------------------------------------------------------- /src/assets/img/BY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/img/BY.png -------------------------------------------------------------------------------- /src/assets/img/BYNC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/img/BYNC.png -------------------------------------------------------------------------------- /src/assets/img/BYNCND.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/img/BYNCND.png -------------------------------------------------------------------------------- /src/assets/img/BYNCSA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/img/BYNCSA.png -------------------------------------------------------------------------------- /src/assets/img/BYND.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/img/BYND.png -------------------------------------------------------------------------------- /src/assets/img/BYSA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/img/BYSA.png -------------------------------------------------------------------------------- /src/assets/img/MIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/img/MIT.png -------------------------------------------------------------------------------- /src/assets/img/google-cardboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/img/google-cardboard.svg -------------------------------------------------------------------------------- /src/assets/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/img/icon.png -------------------------------------------------------------------------------- /src/assets/img/kompakkt-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/img/kompakkt-icon.png -------------------------------------------------------------------------------- /src/assets/img/kompakkt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/img/kompakkt-logo.png -------------------------------------------------------------------------------- /src/assets/img/logo-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/img/logo-background.png -------------------------------------------------------------------------------- /src/assets/img/logo-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/img/logo-background.svg -------------------------------------------------------------------------------- /src/assets/img/logo-with-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/img/logo-with-stroke.png -------------------------------------------------------------------------------- /src/assets/img/preview-default-annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/img/preview-default-annotation.png -------------------------------------------------------------------------------- /src/assets/img/preview-fallback-annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/img/preview-fallback-annotation.png -------------------------------------------------------------------------------- /src/assets/models/KompakktLogoRotate.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/models/KompakktLogoRotate.glb -------------------------------------------------------------------------------- /src/assets/models/KompakktLogoShake.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/models/KompakktLogoShake.glb -------------------------------------------------------------------------------- /src/assets/models/kompakkt.babylon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/models/kompakkt.babylon -------------------------------------------------------------------------------- /src/assets/models/kompakkt.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/models/kompakkt.glb -------------------------------------------------------------------------------- /src/assets/models/sketch_cat/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/models/sketch_cat/scene.bin -------------------------------------------------------------------------------- /src/assets/models/sketch_cat/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/models/sketch_cat/scene.gltf -------------------------------------------------------------------------------- /src/assets/models/sketch_cat/textures/Material_105_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/models/sketch_cat/textures/Material_105_baseColor.png -------------------------------------------------------------------------------- /src/assets/models/sketch_cat/textures/Material_81_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/models/sketch_cat/textures/Material_81_baseColor.png -------------------------------------------------------------------------------- /src/assets/models/sketch_cat/textures/Material_93_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/models/sketch_cat/textures/Material_93_baseColor.png -------------------------------------------------------------------------------- /src/assets/settings/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/settings/settings.ts -------------------------------------------------------------------------------- /src/assets/textures/backgrounds/darkgrey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/backgrounds/darkgrey.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/blue/blue_nx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/blue/blue_nx.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/blue/blue_ny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/blue/blue_ny.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/blue/blue_nz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/blue/blue_nz.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/blue/blue_px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/blue/blue_px.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/blue/blue_py.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/blue/blue_py.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/blue/blue_pz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/blue/blue_pz.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/darkgrey/darkgrey_nx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/darkgrey/darkgrey_nx.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/darkgrey/darkgrey_ny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/darkgrey/darkgrey_ny.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/darkgrey/darkgrey_nz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/darkgrey/darkgrey_nz.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/darkgrey/darkgrey_px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/darkgrey/darkgrey_px.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/darkgrey/darkgrey_py.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/darkgrey/darkgrey_py.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/darkgrey/darkgrey_pz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/darkgrey/darkgrey_pz.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/lightgrey/lightgrey_nx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/lightgrey/lightgrey_nx.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/lightgrey/lightgrey_ny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/lightgrey/lightgrey_ny.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/lightgrey/lightgrey_nz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/lightgrey/lightgrey_nz.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/lightgrey/lightgrey_px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/lightgrey/lightgrey_px.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/lightgrey/lightgrey_py.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/lightgrey/lightgrey_py.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/lightgrey/lightgrey_pz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/lightgrey/lightgrey_pz.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/marineblue/marineblue_nx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/marineblue/marineblue_nx.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/marineblue/marineblue_ny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/marineblue/marineblue_ny.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/marineblue/marineblue_nz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/marineblue/marineblue_nz.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/marineblue/marineblue_px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/marineblue/marineblue_px.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/marineblue/marineblue_py.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/marineblue/marineblue_py.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/marineblue/marineblue_pz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/marineblue/marineblue_pz.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/white/white_nx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/white/white_nx.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/white/white_ny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/white/white_ny.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/white/white_nz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/white/white_nz.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/white/white_px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/white/white_px.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/white/white_py.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/white/white_py.jpg -------------------------------------------------------------------------------- /src/assets/textures/skybox/white/white_pz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/assets/textures/skybox/white/white_pz.jpg -------------------------------------------------------------------------------- /src/environment.docker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/environment.docker.ts -------------------------------------------------------------------------------- /src/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/global-shim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/global-shim.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/index.html -------------------------------------------------------------------------------- /src/laz-perf.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/laz-perf.wasm -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/theme.scss -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/src/tslint.json -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kompakkt/Viewer/HEAD/tslint.json --------------------------------------------------------------------------------