├── .gitignore ├── .gitmodules ├── .npmignore ├── LICENSE ├── README.md ├── data └── camera_para.dat ├── dist └── ARToolkit.js ├── lib ├── ARBindEM.cpp ├── ARToolKitJS.cpp ├── trackingMod.c ├── trackingMod.h └── trackingMod2d.c ├── package.json ├── scripts └── makem.js ├── src ├── ARController.js ├── ARToolkit.js ├── ModuleLoader.js ├── Utils.js ├── artoolkit5 │ ├── artoolkit.debug.js │ ├── artoolkit.min.js │ ├── artoolkit_wasm.js │ └── libar.bc └── index.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | lib/artoolkit5 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/README.md -------------------------------------------------------------------------------- /data/camera_para.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/data/camera_para.dat -------------------------------------------------------------------------------- /dist/ARToolkit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/dist/ARToolkit.js -------------------------------------------------------------------------------- /lib/ARBindEM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/lib/ARBindEM.cpp -------------------------------------------------------------------------------- /lib/ARToolKitJS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/lib/ARToolKitJS.cpp -------------------------------------------------------------------------------- /lib/trackingMod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/lib/trackingMod.c -------------------------------------------------------------------------------- /lib/trackingMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/lib/trackingMod.h -------------------------------------------------------------------------------- /lib/trackingMod2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/lib/trackingMod2d.c -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/package.json -------------------------------------------------------------------------------- /scripts/makem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/scripts/makem.js -------------------------------------------------------------------------------- /src/ARController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/src/ARController.js -------------------------------------------------------------------------------- /src/ARToolkit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/src/ARToolkit.js -------------------------------------------------------------------------------- /src/ModuleLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/src/ModuleLoader.js -------------------------------------------------------------------------------- /src/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/src/Utils.js -------------------------------------------------------------------------------- /src/artoolkit5/artoolkit.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/src/artoolkit5/artoolkit.debug.js -------------------------------------------------------------------------------- /src/artoolkit5/artoolkit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/src/artoolkit5/artoolkit.min.js -------------------------------------------------------------------------------- /src/artoolkit5/artoolkit_wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/src/artoolkit5/artoolkit_wasm.js -------------------------------------------------------------------------------- /src/artoolkit5/libar.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/src/artoolkit5/libar.bc -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/src/index.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andypotato/artoolkit5-js/HEAD/webpack.config.js --------------------------------------------------------------------------------