├── .gitignore ├── Makefile ├── README.md ├── scene.cpp ├── scene.h └── test.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichuang/AOI/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichuang/AOI/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | AOI 2 | === 3 | 4 | aoi algorithm 5 | see: 6 | http://www.codedump.info/?p=388 (in Chinese) -------------------------------------------------------------------------------- /scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichuang/AOI/HEAD/scene.cpp -------------------------------------------------------------------------------- /scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichuang/AOI/HEAD/scene.h -------------------------------------------------------------------------------- /test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichuang/AOI/HEAD/test.cpp --------------------------------------------------------------------------------