├── .gitignore ├── DOCS.md ├── README.md ├── _optimize_compiler.py ├── compiler ├── Pathplan.dll ├── ann.dll ├── cdt.dll ├── cgraph.dll ├── circo.exe ├── config6 ├── dot.exe ├── fdp.exe ├── fontconfig.dll ├── fontconfig_fix.dll ├── freetype6.dll ├── glut32.dll ├── gvc.dll ├── gvplugin_core.dll ├── gvplugin_dot_layout.dll ├── gvplugin_gd.dll ├── gvplugin_gdiplus.dll ├── gvplugin_neato_layout.dll ├── gvplugin_pango.dll ├── iconv.dll ├── intl.dll ├── jpeg62.dll ├── libatk-1.0-0.dll ├── libcairo-2.dll ├── libexpat-1.dll ├── libexpat.dll ├── libfontconfig-1.dll ├── libfreetype-6.dll ├── libgdk_pixbuf-2.0-0.dll ├── libgdkglext-win32-1.0-0.dll ├── libgio-2.0-0.dll ├── libglade-2.0-0.dll ├── libglib-2.0-0.dll ├── libgmodule-2.0-0.dll ├── libgobject-2.0-0.dll ├── libgthread-2.0-0.dll ├── libgtkglext-win32-1.0-0.dll ├── libltdl-3.dll ├── libpango-1.0-0.dll ├── libpangocairo-1.0-0.dll ├── libpangoft2-1.0-0.dll ├── libpangowin32-1.0-0.dll ├── libpng12.dll ├── libpng14-14.dll ├── libxml2.dll ├── ltdl.dll ├── sfdp.exe ├── vmalloc.dll └── zlib1.dll └── xmpaint.pyw /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | output/ 3 | /.idea/ 4 | -------------------------------------------------------------------------------- /DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/DOCS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/README.md -------------------------------------------------------------------------------- /_optimize_compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/_optimize_compiler.py -------------------------------------------------------------------------------- /compiler/Pathplan.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/Pathplan.dll -------------------------------------------------------------------------------- /compiler/ann.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/ann.dll -------------------------------------------------------------------------------- /compiler/cdt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/cdt.dll -------------------------------------------------------------------------------- /compiler/cgraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/cgraph.dll -------------------------------------------------------------------------------- /compiler/circo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/circo.exe -------------------------------------------------------------------------------- /compiler/config6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/config6 -------------------------------------------------------------------------------- /compiler/dot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/dot.exe -------------------------------------------------------------------------------- /compiler/fdp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/fdp.exe -------------------------------------------------------------------------------- /compiler/fontconfig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/fontconfig.dll -------------------------------------------------------------------------------- /compiler/fontconfig_fix.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/fontconfig_fix.dll -------------------------------------------------------------------------------- /compiler/freetype6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/freetype6.dll -------------------------------------------------------------------------------- /compiler/glut32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/glut32.dll -------------------------------------------------------------------------------- /compiler/gvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/gvc.dll -------------------------------------------------------------------------------- /compiler/gvplugin_core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/gvplugin_core.dll -------------------------------------------------------------------------------- /compiler/gvplugin_dot_layout.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/gvplugin_dot_layout.dll -------------------------------------------------------------------------------- /compiler/gvplugin_gd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/gvplugin_gd.dll -------------------------------------------------------------------------------- /compiler/gvplugin_gdiplus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/gvplugin_gdiplus.dll -------------------------------------------------------------------------------- /compiler/gvplugin_neato_layout.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/gvplugin_neato_layout.dll -------------------------------------------------------------------------------- /compiler/gvplugin_pango.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/gvplugin_pango.dll -------------------------------------------------------------------------------- /compiler/iconv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/iconv.dll -------------------------------------------------------------------------------- /compiler/intl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/intl.dll -------------------------------------------------------------------------------- /compiler/jpeg62.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/jpeg62.dll -------------------------------------------------------------------------------- /compiler/libatk-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libatk-1.0-0.dll -------------------------------------------------------------------------------- /compiler/libcairo-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libcairo-2.dll -------------------------------------------------------------------------------- /compiler/libexpat-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libexpat-1.dll -------------------------------------------------------------------------------- /compiler/libexpat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libexpat.dll -------------------------------------------------------------------------------- /compiler/libfontconfig-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libfontconfig-1.dll -------------------------------------------------------------------------------- /compiler/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libfreetype-6.dll -------------------------------------------------------------------------------- /compiler/libgdk_pixbuf-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libgdk_pixbuf-2.0-0.dll -------------------------------------------------------------------------------- /compiler/libgdkglext-win32-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libgdkglext-win32-1.0-0.dll -------------------------------------------------------------------------------- /compiler/libgio-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libgio-2.0-0.dll -------------------------------------------------------------------------------- /compiler/libglade-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libglade-2.0-0.dll -------------------------------------------------------------------------------- /compiler/libglib-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libglib-2.0-0.dll -------------------------------------------------------------------------------- /compiler/libgmodule-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libgmodule-2.0-0.dll -------------------------------------------------------------------------------- /compiler/libgobject-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libgobject-2.0-0.dll -------------------------------------------------------------------------------- /compiler/libgthread-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libgthread-2.0-0.dll -------------------------------------------------------------------------------- /compiler/libgtkglext-win32-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libgtkglext-win32-1.0-0.dll -------------------------------------------------------------------------------- /compiler/libltdl-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libltdl-3.dll -------------------------------------------------------------------------------- /compiler/libpango-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libpango-1.0-0.dll -------------------------------------------------------------------------------- /compiler/libpangocairo-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libpangocairo-1.0-0.dll -------------------------------------------------------------------------------- /compiler/libpangoft2-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libpangoft2-1.0-0.dll -------------------------------------------------------------------------------- /compiler/libpangowin32-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libpangowin32-1.0-0.dll -------------------------------------------------------------------------------- /compiler/libpng12.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libpng12.dll -------------------------------------------------------------------------------- /compiler/libpng14-14.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libpng14-14.dll -------------------------------------------------------------------------------- /compiler/libxml2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/libxml2.dll -------------------------------------------------------------------------------- /compiler/ltdl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/ltdl.dll -------------------------------------------------------------------------------- /compiler/sfdp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/sfdp.exe -------------------------------------------------------------------------------- /compiler/vmalloc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/vmalloc.dll -------------------------------------------------------------------------------- /compiler/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/compiler/zlib1.dll -------------------------------------------------------------------------------- /xmpaint.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmcp/xmpaint/HEAD/xmpaint.pyw --------------------------------------------------------------------------------