├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── .npmignore ├── LICENSE ├── Makefile ├── README.md ├── demos └── index.html ├── docs ├── image-map-creator.gif └── index.html ├── package.json ├── src ├── class.area.ts ├── class.coord.ts ├── class.image-map.ts ├── class.selection.ts ├── interface.movable.ts ├── p5.bg-layer.ts ├── p5.image-map-creator.ts └── utils.ts └── tsconfig.json /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/README.md -------------------------------------------------------------------------------- /demos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/demos/index.html -------------------------------------------------------------------------------- /docs/image-map-creator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/docs/image-map-creator.gif -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/docs/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/package.json -------------------------------------------------------------------------------- /src/class.area.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/src/class.area.ts -------------------------------------------------------------------------------- /src/class.coord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/src/class.coord.ts -------------------------------------------------------------------------------- /src/class.image-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/src/class.image-map.ts -------------------------------------------------------------------------------- /src/class.selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/src/class.selection.ts -------------------------------------------------------------------------------- /src/interface.movable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/src/interface.movable.ts -------------------------------------------------------------------------------- /src/p5.bg-layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/src/p5.bg-layer.ts -------------------------------------------------------------------------------- /src/p5.image-map-creator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/src/p5.image-map-creator.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-peugnet/image-map-creator/HEAD/tsconfig.json --------------------------------------------------------------------------------