├── README.md ├── annotator.py ├── libs ├── __init__.py ├── canvas.py ├── constants.py ├── lib.py ├── scene.py ├── settings.py ├── ustr.py └── version.py ├── resources.py ├── resources.qrc └── utils.py /README.md: -------------------------------------------------------------------------------- 1 | python annotator.py 2 | -------------------------------------------------------------------------------- /annotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/art-programmer/FloorplanAnnotator/HEAD/annotator.py -------------------------------------------------------------------------------- /libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/art-programmer/FloorplanAnnotator/HEAD/libs/canvas.py -------------------------------------------------------------------------------- /libs/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/art-programmer/FloorplanAnnotator/HEAD/libs/constants.py -------------------------------------------------------------------------------- /libs/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/art-programmer/FloorplanAnnotator/HEAD/libs/lib.py -------------------------------------------------------------------------------- /libs/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/art-programmer/FloorplanAnnotator/HEAD/libs/scene.py -------------------------------------------------------------------------------- /libs/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/art-programmer/FloorplanAnnotator/HEAD/libs/settings.py -------------------------------------------------------------------------------- /libs/ustr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/art-programmer/FloorplanAnnotator/HEAD/libs/ustr.py -------------------------------------------------------------------------------- /libs/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/art-programmer/FloorplanAnnotator/HEAD/libs/version.py -------------------------------------------------------------------------------- /resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/art-programmer/FloorplanAnnotator/HEAD/resources.py -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/art-programmer/FloorplanAnnotator/HEAD/resources.qrc -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/art-programmer/FloorplanAnnotator/HEAD/utils.py --------------------------------------------------------------------------------