├── .github └── FUNDING.yml ├── .gitignore ├── CHANGES.md ├── LICENSE.md ├── README.md ├── addons ├── ar-scan-gimmick.js ├── asset-manager.js └── gltf-anim.js ├── demos ├── assets │ ├── cat.glb │ ├── cat.webp │ ├── demo.css │ ├── facebook.png │ ├── heart-fill.svg │ ├── heart.svg │ ├── info.svg │ ├── it-works.png │ ├── linkedin.png │ ├── mage.glb │ ├── mage.webp │ ├── magic-board.mp4 │ ├── magic-board.webm │ ├── magic-circle.png │ ├── my-reference-image.html │ ├── my-reference-image.webp │ ├── my-video.mp4 │ ├── my-video.webm │ ├── poster.css │ ├── poster.js │ ├── poster.svg │ ├── scan.png │ ├── telegram.png │ ├── twitter.png │ ├── video-film.svg │ ├── whatsapp.png │ └── wing-man.png ├── basketball │ ├── NOTICE.html │ ├── assets │ │ ├── atlas.png │ │ ├── backboard.jpg │ │ ├── backboard.wav │ │ ├── ball.blend │ │ ├── ball.glb │ │ ├── basket.wav │ │ ├── bonus.wav │ │ ├── bounce.wav │ │ ├── bounce2.wav │ │ ├── button.wav │ │ ├── goal.blend │ │ ├── goal.glb │ │ ├── lose.wav │ │ ├── music.mp3 │ │ ├── poster.webp │ │ ├── score.wav │ │ └── win.wav │ ├── index.html │ ├── poster.html │ ├── qr-code.gif │ ├── src │ │ ├── core │ │ │ ├── asset-list.js │ │ │ ├── event-queue.js │ │ │ ├── events.js │ │ │ ├── game.js │ │ │ └── globals.js │ │ ├── entities │ │ │ ├── ball.js │ │ │ ├── entity.js │ │ │ ├── game-controller.js │ │ │ ├── goal.js │ │ │ ├── gravity.js │ │ │ ├── gui │ │ │ │ ├── ball-counter.js │ │ │ │ ├── gameover-overlay.js │ │ │ │ ├── gui-control.js │ │ │ │ ├── mute-button.js │ │ │ │ └── tutorial-overlay.js │ │ │ ├── jukebox.js │ │ │ ├── lights.js │ │ │ ├── net.js │ │ │ ├── score-text.js │ │ │ └── scoreboard.js │ │ └── main.js │ └── video.html ├── hello-aframe │ ├── NOTICE.html │ ├── index.html │ ├── poster.html │ ├── qr-code.gif │ └── video.html ├── hello-babylon │ ├── NOTICE.html │ ├── demo.js │ ├── index.html │ ├── poster.html │ ├── qr-code.gif │ └── video.html ├── hello-three │ ├── NOTICE.html │ ├── demo.js │ ├── index.html │ ├── poster.html │ ├── qr-code.gif │ └── video.html ├── hello-webgl │ ├── NOTICE.html │ ├── demo.js │ ├── index.html │ ├── poster.html │ ├── qr-code.gif │ └── video.html ├── hello-world │ ├── NOTICE.html │ ├── demo.js │ ├── index.html │ ├── poster.html │ ├── qr-code.gif │ └── video.html ├── pointer-demo │ ├── NOTICE.html │ ├── demo.js │ ├── index.html │ ├── poster.html │ └── qr-code.gif └── street-art │ ├── NOTICE.html │ ├── assets │ ├── butterfly-target.jpg │ ├── butterfly-video.mp4 │ ├── butterfly.glb │ ├── monster-target.jpg │ ├── monster-video.mp4 │ ├── monster.glb │ ├── monster.wav │ ├── pilot-target.jpg │ ├── pilot-video.mp4 │ ├── pilot.glb │ ├── toyplane.glb │ └── toyplane.wav │ ├── index.html │ ├── poster.html │ └── qr-code.gif ├── docs ├── CNAME ├── addons │ ├── ar-button.md │ ├── ar-clickable.md │ ├── ar-snapshot-button.md │ ├── ar-video-player.md │ ├── asset-manager.md │ ├── index.md │ └── more-addons.md ├── api │ ├── ar-event-listener.md │ ├── ar-event-target.md │ ├── ar-event-type.md │ ├── ar-event.md │ ├── ar.md │ ├── camera-source.md │ ├── canvas-source.md │ ├── frame.md │ ├── gizmos.md │ ├── hud.md │ ├── image-tracker-result.md │ ├── image-tracker.md │ ├── index.md │ ├── perspective-view.md │ ├── plugin-aframe.md │ ├── plugin-babylon.md │ ├── plugin-three.md │ ├── pointer-source.md │ ├── pointer-tracker-result.md │ ├── pointer-tracker.md │ ├── pose.md │ ├── quaternion.md │ ├── ray.md │ ├── reference-image-database.md │ ├── reference-image.md │ ├── resolution.md │ ├── session.md │ ├── settings.md │ ├── source.md │ ├── speedy-matrix.md │ ├── speedy-promise.md │ ├── speedy-size.md │ ├── speedy.md │ ├── time-manager.md │ ├── trackable-image.md │ ├── trackable-pointer.md │ ├── trackable.md │ ├── tracker-result.md │ ├── tracker.md │ ├── transform.md │ ├── vector2.md │ ├── vector3.md │ ├── video-source.md │ ├── view.md │ ├── viewer-pose.md │ ├── viewer.md │ └── viewport.md ├── assets │ ├── my-reference-image.png │ ├── my-reference-image.webp │ ├── my-video.mp4 │ ├── my-video.webm │ └── scan.png ├── demos.md ├── download.md ├── faq.md ├── guidelines-for-images.md ├── hooks.py ├── img │ ├── addon-buttons.gif │ ├── addon-clickables.gif │ ├── aframe-cat.mp4 │ ├── aframe-cat.webm │ ├── aframe-cat.webp │ ├── basketball.gif │ ├── basketball2.gif │ ├── cat.gif │ ├── demo-basketball.gif │ ├── demo-box.gif │ ├── demo-cat.gif │ ├── demo-hello.gif │ ├── demo-hello.png │ ├── demo-hello.webp │ ├── demo-webgl.gif │ ├── enchanted-sky.webp │ ├── favicon.png │ ├── guidelines-for-images-1.jpg │ ├── guidelines-for-images-10.jpg │ ├── guidelines-for-images-11.jpg │ ├── guidelines-for-images-12.jpg │ ├── guidelines-for-images-13.jpg │ ├── guidelines-for-images-14.jpg │ ├── guidelines-for-images-15.png │ ├── guidelines-for-images-16.jpg │ ├── guidelines-for-images-2.jpg │ ├── guidelines-for-images-3.jpg │ ├── guidelines-for-images-4.jpg │ ├── guidelines-for-images-5.jpg │ ├── guidelines-for-images-6.jpg │ ├── guidelines-for-images-7.jpg │ ├── guidelines-for-images-8.jpg │ ├── guidelines-for-images-9.jpg │ ├── image-tracking-gizmos.webp │ ├── lgpl.png │ ├── lifecycle-plugin.png │ ├── logo-aframe.png │ ├── logo-babylon.png │ ├── logo-three.png │ ├── logo-webgl.png │ ├── logo.png │ ├── mage.gif │ ├── open-source.png │ ├── page-with-nothing.webp │ ├── page-with-reference-image.webp │ ├── pointer-demo.png │ ├── servez-stopped.png │ ├── servez.png │ ├── splash.gif │ ├── splash.webp │ ├── street-art.jpg │ ├── take-photos.jpg │ ├── video-player.gif │ └── witch-coder.webp ├── index.md ├── license.md └── tutorial │ ├── activate-your-webcam.md │ ├── augment-the-scene.md │ ├── concepts.md │ ├── index.md │ ├── next-steps.md │ ├── set-up-a-web-server.md │ ├── set-up-the-session.md │ └── set-up-the-tracker.md ├── docs_overrides ├── download.html ├── index.html ├── js │ ├── dialog-polyfill.js │ ├── donate.js │ ├── extra.js │ └── lite-yt-embed.js ├── main.html ├── partials │ └── copyright.html └── style │ ├── dialog-polyfill.css │ ├── extra.css │ └── lite-yt-embed.css ├── esbuild.mjs ├── mkdocs.yml ├── package.json ├── plugins ├── aframe-with-encantar.js ├── babylon-with-encantar.js └── three-with-encantar.js ├── src ├── core │ ├── frame.ts │ ├── hud.ts │ ├── session.ts │ ├── settings.ts │ ├── stats.ts │ ├── time-manager.ts │ └── viewport.ts ├── geometry │ ├── camera-model.ts │ ├── pnp.ts │ ├── pose-filter.ts │ ├── pose.ts │ ├── quaternion.ts │ ├── ray.ts │ ├── transform.ts │ ├── vector2.ts │ ├── vector3.ts │ ├── view.ts │ ├── viewer-pose.ts │ └── viewer.ts ├── main.ts ├── sources │ ├── camera-source.ts │ ├── canvas-source.ts │ ├── pointer-source.ts │ ├── source-factory.ts │ ├── source.ts │ └── video-source.ts ├── trackers │ ├── image-tracker │ │ ├── image-tracker-event.ts │ │ ├── image-tracker-utils.ts │ │ ├── image-tracker.ts │ │ ├── reference-image-database.ts │ │ ├── reference-image.ts │ │ ├── settings.ts │ │ └── states │ │ │ ├── initial.ts │ │ │ ├── pre-tracking-a.ts │ │ │ ├── pre-tracking-b.ts │ │ │ ├── scanning.ts │ │ │ ├── state.ts │ │ │ ├── tracking.ts │ │ │ └── training.ts │ ├── pointer-tracker │ │ ├── pointer-tracker.ts │ │ └── trackable-pointer.ts │ ├── tracker-factory.ts │ └── tracker.ts ├── ui │ ├── fullscreen-button.ts │ ├── gizmos.ts │ └── stats-panel.ts └── utils │ ├── ar-events.ts │ ├── asap.ts │ ├── errors.ts │ ├── resolution.ts │ └── utils.ts └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/README.md -------------------------------------------------------------------------------- /addons/ar-scan-gimmick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/addons/ar-scan-gimmick.js -------------------------------------------------------------------------------- /addons/asset-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/addons/asset-manager.js -------------------------------------------------------------------------------- /addons/gltf-anim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/addons/gltf-anim.js -------------------------------------------------------------------------------- /demos/assets/cat.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/cat.glb -------------------------------------------------------------------------------- /demos/assets/cat.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/cat.webp -------------------------------------------------------------------------------- /demos/assets/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/demo.css -------------------------------------------------------------------------------- /demos/assets/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/facebook.png -------------------------------------------------------------------------------- /demos/assets/heart-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/heart-fill.svg -------------------------------------------------------------------------------- /demos/assets/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/heart.svg -------------------------------------------------------------------------------- /demos/assets/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/info.svg -------------------------------------------------------------------------------- /demos/assets/it-works.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/it-works.png -------------------------------------------------------------------------------- /demos/assets/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/linkedin.png -------------------------------------------------------------------------------- /demos/assets/mage.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/mage.glb -------------------------------------------------------------------------------- /demos/assets/mage.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/mage.webp -------------------------------------------------------------------------------- /demos/assets/magic-board.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/magic-board.mp4 -------------------------------------------------------------------------------- /demos/assets/magic-board.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/magic-board.webm -------------------------------------------------------------------------------- /demos/assets/magic-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/magic-circle.png -------------------------------------------------------------------------------- /demos/assets/my-reference-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/my-reference-image.html -------------------------------------------------------------------------------- /demos/assets/my-reference-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/my-reference-image.webp -------------------------------------------------------------------------------- /demos/assets/my-video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/my-video.mp4 -------------------------------------------------------------------------------- /demos/assets/my-video.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/my-video.webm -------------------------------------------------------------------------------- /demos/assets/poster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/poster.css -------------------------------------------------------------------------------- /demos/assets/poster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/poster.js -------------------------------------------------------------------------------- /demos/assets/poster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/poster.svg -------------------------------------------------------------------------------- /demos/assets/scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/scan.png -------------------------------------------------------------------------------- /demos/assets/telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/telegram.png -------------------------------------------------------------------------------- /demos/assets/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/twitter.png -------------------------------------------------------------------------------- /demos/assets/video-film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/video-film.svg -------------------------------------------------------------------------------- /demos/assets/whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/whatsapp.png -------------------------------------------------------------------------------- /demos/assets/wing-man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/assets/wing-man.png -------------------------------------------------------------------------------- /demos/basketball/NOTICE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/NOTICE.html -------------------------------------------------------------------------------- /demos/basketball/assets/atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/assets/atlas.png -------------------------------------------------------------------------------- /demos/basketball/assets/backboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/assets/backboard.jpg -------------------------------------------------------------------------------- /demos/basketball/assets/backboard.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/assets/backboard.wav -------------------------------------------------------------------------------- /demos/basketball/assets/ball.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/assets/ball.blend -------------------------------------------------------------------------------- /demos/basketball/assets/ball.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/assets/ball.glb -------------------------------------------------------------------------------- /demos/basketball/assets/basket.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/assets/basket.wav -------------------------------------------------------------------------------- /demos/basketball/assets/bonus.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/assets/bonus.wav -------------------------------------------------------------------------------- /demos/basketball/assets/bounce.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/assets/bounce.wav -------------------------------------------------------------------------------- /demos/basketball/assets/bounce2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/assets/bounce2.wav -------------------------------------------------------------------------------- /demos/basketball/assets/button.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/assets/button.wav -------------------------------------------------------------------------------- /demos/basketball/assets/goal.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/assets/goal.blend -------------------------------------------------------------------------------- /demos/basketball/assets/goal.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/assets/goal.glb -------------------------------------------------------------------------------- /demos/basketball/assets/lose.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/assets/lose.wav -------------------------------------------------------------------------------- /demos/basketball/assets/music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/assets/music.mp3 -------------------------------------------------------------------------------- /demos/basketball/assets/poster.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/assets/poster.webp -------------------------------------------------------------------------------- /demos/basketball/assets/score.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/assets/score.wav -------------------------------------------------------------------------------- /demos/basketball/assets/win.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/assets/win.wav -------------------------------------------------------------------------------- /demos/basketball/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/index.html -------------------------------------------------------------------------------- /demos/basketball/poster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/poster.html -------------------------------------------------------------------------------- /demos/basketball/qr-code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/qr-code.gif -------------------------------------------------------------------------------- /demos/basketball/src/core/asset-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/core/asset-list.js -------------------------------------------------------------------------------- /demos/basketball/src/core/event-queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/core/event-queue.js -------------------------------------------------------------------------------- /demos/basketball/src/core/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/core/events.js -------------------------------------------------------------------------------- /demos/basketball/src/core/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/core/game.js -------------------------------------------------------------------------------- /demos/basketball/src/core/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/core/globals.js -------------------------------------------------------------------------------- /demos/basketball/src/entities/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/entities/ball.js -------------------------------------------------------------------------------- /demos/basketball/src/entities/entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/entities/entity.js -------------------------------------------------------------------------------- /demos/basketball/src/entities/game-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/entities/game-controller.js -------------------------------------------------------------------------------- /demos/basketball/src/entities/goal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/entities/goal.js -------------------------------------------------------------------------------- /demos/basketball/src/entities/gravity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/entities/gravity.js -------------------------------------------------------------------------------- /demos/basketball/src/entities/gui/ball-counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/entities/gui/ball-counter.js -------------------------------------------------------------------------------- /demos/basketball/src/entities/gui/gameover-overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/entities/gui/gameover-overlay.js -------------------------------------------------------------------------------- /demos/basketball/src/entities/gui/gui-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/entities/gui/gui-control.js -------------------------------------------------------------------------------- /demos/basketball/src/entities/gui/mute-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/entities/gui/mute-button.js -------------------------------------------------------------------------------- /demos/basketball/src/entities/gui/tutorial-overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/entities/gui/tutorial-overlay.js -------------------------------------------------------------------------------- /demos/basketball/src/entities/jukebox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/entities/jukebox.js -------------------------------------------------------------------------------- /demos/basketball/src/entities/lights.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/entities/lights.js -------------------------------------------------------------------------------- /demos/basketball/src/entities/net.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/entities/net.js -------------------------------------------------------------------------------- /demos/basketball/src/entities/score-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/entities/score-text.js -------------------------------------------------------------------------------- /demos/basketball/src/entities/scoreboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/entities/scoreboard.js -------------------------------------------------------------------------------- /demos/basketball/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/src/main.js -------------------------------------------------------------------------------- /demos/basketball/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/basketball/video.html -------------------------------------------------------------------------------- /demos/hello-aframe/NOTICE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-aframe/NOTICE.html -------------------------------------------------------------------------------- /demos/hello-aframe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-aframe/index.html -------------------------------------------------------------------------------- /demos/hello-aframe/poster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-aframe/poster.html -------------------------------------------------------------------------------- /demos/hello-aframe/qr-code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-aframe/qr-code.gif -------------------------------------------------------------------------------- /demos/hello-aframe/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-aframe/video.html -------------------------------------------------------------------------------- /demos/hello-babylon/NOTICE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-babylon/NOTICE.html -------------------------------------------------------------------------------- /demos/hello-babylon/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-babylon/demo.js -------------------------------------------------------------------------------- /demos/hello-babylon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-babylon/index.html -------------------------------------------------------------------------------- /demos/hello-babylon/poster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-babylon/poster.html -------------------------------------------------------------------------------- /demos/hello-babylon/qr-code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-babylon/qr-code.gif -------------------------------------------------------------------------------- /demos/hello-babylon/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-babylon/video.html -------------------------------------------------------------------------------- /demos/hello-three/NOTICE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-three/NOTICE.html -------------------------------------------------------------------------------- /demos/hello-three/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-three/demo.js -------------------------------------------------------------------------------- /demos/hello-three/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-three/index.html -------------------------------------------------------------------------------- /demos/hello-three/poster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-three/poster.html -------------------------------------------------------------------------------- /demos/hello-three/qr-code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-three/qr-code.gif -------------------------------------------------------------------------------- /demos/hello-three/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-three/video.html -------------------------------------------------------------------------------- /demos/hello-webgl/NOTICE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-webgl/NOTICE.html -------------------------------------------------------------------------------- /demos/hello-webgl/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-webgl/demo.js -------------------------------------------------------------------------------- /demos/hello-webgl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-webgl/index.html -------------------------------------------------------------------------------- /demos/hello-webgl/poster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-webgl/poster.html -------------------------------------------------------------------------------- /demos/hello-webgl/qr-code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-webgl/qr-code.gif -------------------------------------------------------------------------------- /demos/hello-webgl/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-webgl/video.html -------------------------------------------------------------------------------- /demos/hello-world/NOTICE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-world/NOTICE.html -------------------------------------------------------------------------------- /demos/hello-world/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-world/demo.js -------------------------------------------------------------------------------- /demos/hello-world/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-world/index.html -------------------------------------------------------------------------------- /demos/hello-world/poster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-world/poster.html -------------------------------------------------------------------------------- /demos/hello-world/qr-code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-world/qr-code.gif -------------------------------------------------------------------------------- /demos/hello-world/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/hello-world/video.html -------------------------------------------------------------------------------- /demos/pointer-demo/NOTICE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/pointer-demo/NOTICE.html -------------------------------------------------------------------------------- /demos/pointer-demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/pointer-demo/demo.js -------------------------------------------------------------------------------- /demos/pointer-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/pointer-demo/index.html -------------------------------------------------------------------------------- /demos/pointer-demo/poster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/pointer-demo/poster.html -------------------------------------------------------------------------------- /demos/pointer-demo/qr-code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/pointer-demo/qr-code.gif -------------------------------------------------------------------------------- /demos/street-art/NOTICE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/street-art/NOTICE.html -------------------------------------------------------------------------------- /demos/street-art/assets/butterfly-target.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/street-art/assets/butterfly-target.jpg -------------------------------------------------------------------------------- /demos/street-art/assets/butterfly-video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/street-art/assets/butterfly-video.mp4 -------------------------------------------------------------------------------- /demos/street-art/assets/butterfly.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/street-art/assets/butterfly.glb -------------------------------------------------------------------------------- /demos/street-art/assets/monster-target.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/street-art/assets/monster-target.jpg -------------------------------------------------------------------------------- /demos/street-art/assets/monster-video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/street-art/assets/monster-video.mp4 -------------------------------------------------------------------------------- /demos/street-art/assets/monster.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/street-art/assets/monster.glb -------------------------------------------------------------------------------- /demos/street-art/assets/monster.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/street-art/assets/monster.wav -------------------------------------------------------------------------------- /demos/street-art/assets/pilot-target.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/street-art/assets/pilot-target.jpg -------------------------------------------------------------------------------- /demos/street-art/assets/pilot-video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/street-art/assets/pilot-video.mp4 -------------------------------------------------------------------------------- /demos/street-art/assets/pilot.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/street-art/assets/pilot.glb -------------------------------------------------------------------------------- /demos/street-art/assets/toyplane.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/street-art/assets/toyplane.glb -------------------------------------------------------------------------------- /demos/street-art/assets/toyplane.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/street-art/assets/toyplane.wav -------------------------------------------------------------------------------- /demos/street-art/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/street-art/index.html -------------------------------------------------------------------------------- /demos/street-art/poster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/street-art/poster.html -------------------------------------------------------------------------------- /demos/street-art/qr-code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/demos/street-art/qr-code.gif -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | encantar.dev -------------------------------------------------------------------------------- /docs/addons/ar-button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/addons/ar-button.md -------------------------------------------------------------------------------- /docs/addons/ar-clickable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/addons/ar-clickable.md -------------------------------------------------------------------------------- /docs/addons/ar-snapshot-button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/addons/ar-snapshot-button.md -------------------------------------------------------------------------------- /docs/addons/ar-video-player.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/addons/ar-video-player.md -------------------------------------------------------------------------------- /docs/addons/asset-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/addons/asset-manager.md -------------------------------------------------------------------------------- /docs/addons/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/addons/index.md -------------------------------------------------------------------------------- /docs/addons/more-addons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/addons/more-addons.md -------------------------------------------------------------------------------- /docs/api/ar-event-listener.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/ar-event-listener.md -------------------------------------------------------------------------------- /docs/api/ar-event-target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/ar-event-target.md -------------------------------------------------------------------------------- /docs/api/ar-event-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/ar-event-type.md -------------------------------------------------------------------------------- /docs/api/ar-event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/ar-event.md -------------------------------------------------------------------------------- /docs/api/ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/ar.md -------------------------------------------------------------------------------- /docs/api/camera-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/camera-source.md -------------------------------------------------------------------------------- /docs/api/canvas-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/canvas-source.md -------------------------------------------------------------------------------- /docs/api/frame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/frame.md -------------------------------------------------------------------------------- /docs/api/gizmos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/gizmos.md -------------------------------------------------------------------------------- /docs/api/hud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/hud.md -------------------------------------------------------------------------------- /docs/api/image-tracker-result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/image-tracker-result.md -------------------------------------------------------------------------------- /docs/api/image-tracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/image-tracker.md -------------------------------------------------------------------------------- /docs/api/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api/perspective-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/perspective-view.md -------------------------------------------------------------------------------- /docs/api/plugin-aframe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/plugin-aframe.md -------------------------------------------------------------------------------- /docs/api/plugin-babylon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/plugin-babylon.md -------------------------------------------------------------------------------- /docs/api/plugin-three.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/plugin-three.md -------------------------------------------------------------------------------- /docs/api/pointer-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/pointer-source.md -------------------------------------------------------------------------------- /docs/api/pointer-tracker-result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/pointer-tracker-result.md -------------------------------------------------------------------------------- /docs/api/pointer-tracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/pointer-tracker.md -------------------------------------------------------------------------------- /docs/api/pose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/pose.md -------------------------------------------------------------------------------- /docs/api/quaternion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/quaternion.md -------------------------------------------------------------------------------- /docs/api/ray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/ray.md -------------------------------------------------------------------------------- /docs/api/reference-image-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/reference-image-database.md -------------------------------------------------------------------------------- /docs/api/reference-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/reference-image.md -------------------------------------------------------------------------------- /docs/api/resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/resolution.md -------------------------------------------------------------------------------- /docs/api/session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/session.md -------------------------------------------------------------------------------- /docs/api/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/settings.md -------------------------------------------------------------------------------- /docs/api/source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/source.md -------------------------------------------------------------------------------- /docs/api/speedy-matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/speedy-matrix.md -------------------------------------------------------------------------------- /docs/api/speedy-promise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/speedy-promise.md -------------------------------------------------------------------------------- /docs/api/speedy-size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/speedy-size.md -------------------------------------------------------------------------------- /docs/api/speedy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/speedy.md -------------------------------------------------------------------------------- /docs/api/time-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/time-manager.md -------------------------------------------------------------------------------- /docs/api/trackable-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/trackable-image.md -------------------------------------------------------------------------------- /docs/api/trackable-pointer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/trackable-pointer.md -------------------------------------------------------------------------------- /docs/api/trackable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/trackable.md -------------------------------------------------------------------------------- /docs/api/tracker-result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/tracker-result.md -------------------------------------------------------------------------------- /docs/api/tracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/tracker.md -------------------------------------------------------------------------------- /docs/api/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/transform.md -------------------------------------------------------------------------------- /docs/api/vector2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/vector2.md -------------------------------------------------------------------------------- /docs/api/vector3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/vector3.md -------------------------------------------------------------------------------- /docs/api/video-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/video-source.md -------------------------------------------------------------------------------- /docs/api/view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/view.md -------------------------------------------------------------------------------- /docs/api/viewer-pose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/viewer-pose.md -------------------------------------------------------------------------------- /docs/api/viewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/viewer.md -------------------------------------------------------------------------------- /docs/api/viewport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/api/viewport.md -------------------------------------------------------------------------------- /docs/assets/my-reference-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/assets/my-reference-image.png -------------------------------------------------------------------------------- /docs/assets/my-reference-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/assets/my-reference-image.webp -------------------------------------------------------------------------------- /docs/assets/my-video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/assets/my-video.mp4 -------------------------------------------------------------------------------- /docs/assets/my-video.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/assets/my-video.webm -------------------------------------------------------------------------------- /docs/assets/scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/assets/scan.png -------------------------------------------------------------------------------- /docs/demos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/demos.md -------------------------------------------------------------------------------- /docs/download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/download.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/guidelines-for-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/guidelines-for-images.md -------------------------------------------------------------------------------- /docs/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/hooks.py -------------------------------------------------------------------------------- /docs/img/addon-buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/addon-buttons.gif -------------------------------------------------------------------------------- /docs/img/addon-clickables.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/addon-clickables.gif -------------------------------------------------------------------------------- /docs/img/aframe-cat.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/aframe-cat.mp4 -------------------------------------------------------------------------------- /docs/img/aframe-cat.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/aframe-cat.webm -------------------------------------------------------------------------------- /docs/img/aframe-cat.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/aframe-cat.webp -------------------------------------------------------------------------------- /docs/img/basketball.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/basketball.gif -------------------------------------------------------------------------------- /docs/img/basketball2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/basketball2.gif -------------------------------------------------------------------------------- /docs/img/cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/cat.gif -------------------------------------------------------------------------------- /docs/img/demo-basketball.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/demo-basketball.gif -------------------------------------------------------------------------------- /docs/img/demo-box.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/demo-box.gif -------------------------------------------------------------------------------- /docs/img/demo-cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/demo-cat.gif -------------------------------------------------------------------------------- /docs/img/demo-hello.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/demo-hello.gif -------------------------------------------------------------------------------- /docs/img/demo-hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/demo-hello.png -------------------------------------------------------------------------------- /docs/img/demo-hello.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/demo-hello.webp -------------------------------------------------------------------------------- /docs/img/demo-webgl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/demo-webgl.gif -------------------------------------------------------------------------------- /docs/img/enchanted-sky.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/enchanted-sky.webp -------------------------------------------------------------------------------- /docs/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/favicon.png -------------------------------------------------------------------------------- /docs/img/guidelines-for-images-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/guidelines-for-images-1.jpg -------------------------------------------------------------------------------- /docs/img/guidelines-for-images-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/guidelines-for-images-10.jpg -------------------------------------------------------------------------------- /docs/img/guidelines-for-images-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/guidelines-for-images-11.jpg -------------------------------------------------------------------------------- /docs/img/guidelines-for-images-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/guidelines-for-images-12.jpg -------------------------------------------------------------------------------- /docs/img/guidelines-for-images-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/guidelines-for-images-13.jpg -------------------------------------------------------------------------------- /docs/img/guidelines-for-images-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/guidelines-for-images-14.jpg -------------------------------------------------------------------------------- /docs/img/guidelines-for-images-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/guidelines-for-images-15.png -------------------------------------------------------------------------------- /docs/img/guidelines-for-images-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/guidelines-for-images-16.jpg -------------------------------------------------------------------------------- /docs/img/guidelines-for-images-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/guidelines-for-images-2.jpg -------------------------------------------------------------------------------- /docs/img/guidelines-for-images-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/guidelines-for-images-3.jpg -------------------------------------------------------------------------------- /docs/img/guidelines-for-images-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/guidelines-for-images-4.jpg -------------------------------------------------------------------------------- /docs/img/guidelines-for-images-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/guidelines-for-images-5.jpg -------------------------------------------------------------------------------- /docs/img/guidelines-for-images-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/guidelines-for-images-6.jpg -------------------------------------------------------------------------------- /docs/img/guidelines-for-images-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/guidelines-for-images-7.jpg -------------------------------------------------------------------------------- /docs/img/guidelines-for-images-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/guidelines-for-images-8.jpg -------------------------------------------------------------------------------- /docs/img/guidelines-for-images-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/guidelines-for-images-9.jpg -------------------------------------------------------------------------------- /docs/img/image-tracking-gizmos.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/image-tracking-gizmos.webp -------------------------------------------------------------------------------- /docs/img/lgpl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/lgpl.png -------------------------------------------------------------------------------- /docs/img/lifecycle-plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/lifecycle-plugin.png -------------------------------------------------------------------------------- /docs/img/logo-aframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/logo-aframe.png -------------------------------------------------------------------------------- /docs/img/logo-babylon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/logo-babylon.png -------------------------------------------------------------------------------- /docs/img/logo-three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/logo-three.png -------------------------------------------------------------------------------- /docs/img/logo-webgl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/logo-webgl.png -------------------------------------------------------------------------------- /docs/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/logo.png -------------------------------------------------------------------------------- /docs/img/mage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/mage.gif -------------------------------------------------------------------------------- /docs/img/open-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/open-source.png -------------------------------------------------------------------------------- /docs/img/page-with-nothing.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/page-with-nothing.webp -------------------------------------------------------------------------------- /docs/img/page-with-reference-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/page-with-reference-image.webp -------------------------------------------------------------------------------- /docs/img/pointer-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/pointer-demo.png -------------------------------------------------------------------------------- /docs/img/servez-stopped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/servez-stopped.png -------------------------------------------------------------------------------- /docs/img/servez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/servez.png -------------------------------------------------------------------------------- /docs/img/splash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/splash.gif -------------------------------------------------------------------------------- /docs/img/splash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/splash.webp -------------------------------------------------------------------------------- /docs/img/street-art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/street-art.jpg -------------------------------------------------------------------------------- /docs/img/take-photos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/take-photos.jpg -------------------------------------------------------------------------------- /docs/img/video-player.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/video-player.gif -------------------------------------------------------------------------------- /docs/img/witch-coder.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/img/witch-coder.webp -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | template: index.html 3 | title: "" 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/license.md -------------------------------------------------------------------------------- /docs/tutorial/activate-your-webcam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/tutorial/activate-your-webcam.md -------------------------------------------------------------------------------- /docs/tutorial/augment-the-scene.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/tutorial/augment-the-scene.md -------------------------------------------------------------------------------- /docs/tutorial/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/tutorial/concepts.md -------------------------------------------------------------------------------- /docs/tutorial/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/tutorial/index.md -------------------------------------------------------------------------------- /docs/tutorial/next-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/tutorial/next-steps.md -------------------------------------------------------------------------------- /docs/tutorial/set-up-a-web-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/tutorial/set-up-a-web-server.md -------------------------------------------------------------------------------- /docs/tutorial/set-up-the-session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/tutorial/set-up-the-session.md -------------------------------------------------------------------------------- /docs/tutorial/set-up-the-tracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs/tutorial/set-up-the-tracker.md -------------------------------------------------------------------------------- /docs_overrides/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs_overrides/download.html -------------------------------------------------------------------------------- /docs_overrides/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs_overrides/index.html -------------------------------------------------------------------------------- /docs_overrides/js/dialog-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs_overrides/js/dialog-polyfill.js -------------------------------------------------------------------------------- /docs_overrides/js/donate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs_overrides/js/donate.js -------------------------------------------------------------------------------- /docs_overrides/js/extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs_overrides/js/extra.js -------------------------------------------------------------------------------- /docs_overrides/js/lite-yt-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs_overrides/js/lite-yt-embed.js -------------------------------------------------------------------------------- /docs_overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs_overrides/main.html -------------------------------------------------------------------------------- /docs_overrides/partials/copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs_overrides/partials/copyright.html -------------------------------------------------------------------------------- /docs_overrides/style/dialog-polyfill.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs_overrides/style/dialog-polyfill.css -------------------------------------------------------------------------------- /docs_overrides/style/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs_overrides/style/extra.css -------------------------------------------------------------------------------- /docs_overrides/style/lite-yt-embed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/docs_overrides/style/lite-yt-embed.css -------------------------------------------------------------------------------- /esbuild.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/esbuild.mjs -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/package.json -------------------------------------------------------------------------------- /plugins/aframe-with-encantar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/plugins/aframe-with-encantar.js -------------------------------------------------------------------------------- /plugins/babylon-with-encantar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/plugins/babylon-with-encantar.js -------------------------------------------------------------------------------- /plugins/three-with-encantar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/plugins/three-with-encantar.js -------------------------------------------------------------------------------- /src/core/frame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/core/frame.ts -------------------------------------------------------------------------------- /src/core/hud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/core/hud.ts -------------------------------------------------------------------------------- /src/core/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/core/session.ts -------------------------------------------------------------------------------- /src/core/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/core/settings.ts -------------------------------------------------------------------------------- /src/core/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/core/stats.ts -------------------------------------------------------------------------------- /src/core/time-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/core/time-manager.ts -------------------------------------------------------------------------------- /src/core/viewport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/core/viewport.ts -------------------------------------------------------------------------------- /src/geometry/camera-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/geometry/camera-model.ts -------------------------------------------------------------------------------- /src/geometry/pnp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/geometry/pnp.ts -------------------------------------------------------------------------------- /src/geometry/pose-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/geometry/pose-filter.ts -------------------------------------------------------------------------------- /src/geometry/pose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/geometry/pose.ts -------------------------------------------------------------------------------- /src/geometry/quaternion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/geometry/quaternion.ts -------------------------------------------------------------------------------- /src/geometry/ray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/geometry/ray.ts -------------------------------------------------------------------------------- /src/geometry/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/geometry/transform.ts -------------------------------------------------------------------------------- /src/geometry/vector2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/geometry/vector2.ts -------------------------------------------------------------------------------- /src/geometry/vector3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/geometry/vector3.ts -------------------------------------------------------------------------------- /src/geometry/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/geometry/view.ts -------------------------------------------------------------------------------- /src/geometry/viewer-pose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/geometry/viewer-pose.ts -------------------------------------------------------------------------------- /src/geometry/viewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/geometry/viewer.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/sources/camera-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/sources/camera-source.ts -------------------------------------------------------------------------------- /src/sources/canvas-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/sources/canvas-source.ts -------------------------------------------------------------------------------- /src/sources/pointer-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/sources/pointer-source.ts -------------------------------------------------------------------------------- /src/sources/source-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/sources/source-factory.ts -------------------------------------------------------------------------------- /src/sources/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/sources/source.ts -------------------------------------------------------------------------------- /src/sources/video-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/sources/video-source.ts -------------------------------------------------------------------------------- /src/trackers/image-tracker/image-tracker-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/trackers/image-tracker/image-tracker-event.ts -------------------------------------------------------------------------------- /src/trackers/image-tracker/image-tracker-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/trackers/image-tracker/image-tracker-utils.ts -------------------------------------------------------------------------------- /src/trackers/image-tracker/image-tracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/trackers/image-tracker/image-tracker.ts -------------------------------------------------------------------------------- /src/trackers/image-tracker/reference-image-database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/trackers/image-tracker/reference-image-database.ts -------------------------------------------------------------------------------- /src/trackers/image-tracker/reference-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/trackers/image-tracker/reference-image.ts -------------------------------------------------------------------------------- /src/trackers/image-tracker/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/trackers/image-tracker/settings.ts -------------------------------------------------------------------------------- /src/trackers/image-tracker/states/initial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/trackers/image-tracker/states/initial.ts -------------------------------------------------------------------------------- /src/trackers/image-tracker/states/pre-tracking-a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/trackers/image-tracker/states/pre-tracking-a.ts -------------------------------------------------------------------------------- /src/trackers/image-tracker/states/pre-tracking-b.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/trackers/image-tracker/states/pre-tracking-b.ts -------------------------------------------------------------------------------- /src/trackers/image-tracker/states/scanning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/trackers/image-tracker/states/scanning.ts -------------------------------------------------------------------------------- /src/trackers/image-tracker/states/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/trackers/image-tracker/states/state.ts -------------------------------------------------------------------------------- /src/trackers/image-tracker/states/tracking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/trackers/image-tracker/states/tracking.ts -------------------------------------------------------------------------------- /src/trackers/image-tracker/states/training.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/trackers/image-tracker/states/training.ts -------------------------------------------------------------------------------- /src/trackers/pointer-tracker/pointer-tracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/trackers/pointer-tracker/pointer-tracker.ts -------------------------------------------------------------------------------- /src/trackers/pointer-tracker/trackable-pointer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/trackers/pointer-tracker/trackable-pointer.ts -------------------------------------------------------------------------------- /src/trackers/tracker-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/trackers/tracker-factory.ts -------------------------------------------------------------------------------- /src/trackers/tracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/trackers/tracker.ts -------------------------------------------------------------------------------- /src/ui/fullscreen-button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/ui/fullscreen-button.ts -------------------------------------------------------------------------------- /src/ui/gizmos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/ui/gizmos.ts -------------------------------------------------------------------------------- /src/ui/stats-panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/ui/stats-panel.ts -------------------------------------------------------------------------------- /src/utils/ar-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/utils/ar-events.ts -------------------------------------------------------------------------------- /src/utils/asap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/utils/asap.ts -------------------------------------------------------------------------------- /src/utils/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/utils/errors.ts -------------------------------------------------------------------------------- /src/utils/resolution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/utils/resolution.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemart/encantar-js/HEAD/tsconfig.json --------------------------------------------------------------------------------