├── .gitignore ├── bin ├── circle_green.png ├── circle_grey.png ├── index.html └── qwebchannel.js ├── readme.md ├── screenshots ├── screenshot1.png └── screenshot2.png └── source ├── def.pri ├── include ├── bridge.h └── lightmapwidget.h ├── lightmap.pro ├── source ├── bridge.cpp ├── lightmapwidget.cpp └── main.cpp └── ui └── lightmapwidget.ui /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtpluscn/lightmap/HEAD/.gitignore -------------------------------------------------------------------------------- /bin/circle_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtpluscn/lightmap/HEAD/bin/circle_green.png -------------------------------------------------------------------------------- /bin/circle_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtpluscn/lightmap/HEAD/bin/circle_grey.png -------------------------------------------------------------------------------- /bin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtpluscn/lightmap/HEAD/bin/index.html -------------------------------------------------------------------------------- /bin/qwebchannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtpluscn/lightmap/HEAD/bin/qwebchannel.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtpluscn/lightmap/HEAD/readme.md -------------------------------------------------------------------------------- /screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtpluscn/lightmap/HEAD/screenshots/screenshot1.png -------------------------------------------------------------------------------- /screenshots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtpluscn/lightmap/HEAD/screenshots/screenshot2.png -------------------------------------------------------------------------------- /source/def.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtpluscn/lightmap/HEAD/source/def.pri -------------------------------------------------------------------------------- /source/include/bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtpluscn/lightmap/HEAD/source/include/bridge.h -------------------------------------------------------------------------------- /source/include/lightmapwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtpluscn/lightmap/HEAD/source/include/lightmapwidget.h -------------------------------------------------------------------------------- /source/lightmap.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtpluscn/lightmap/HEAD/source/lightmap.pro -------------------------------------------------------------------------------- /source/source/bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtpluscn/lightmap/HEAD/source/source/bridge.cpp -------------------------------------------------------------------------------- /source/source/lightmapwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtpluscn/lightmap/HEAD/source/source/lightmapwidget.cpp -------------------------------------------------------------------------------- /source/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtpluscn/lightmap/HEAD/source/source/main.cpp -------------------------------------------------------------------------------- /source/ui/lightmapwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtpluscn/lightmap/HEAD/source/ui/lightmapwidget.ui --------------------------------------------------------------------------------