├── autoexec.py ├── bitmaps └── test.png ├── debian ├── README ├── changelog ├── compat ├── control ├── copyright ├── heekspython-dev.dirs ├── heekspython-dev.install ├── heekspython0.dirs ├── heekspython0.install └── rules ├── examples ├── cut_example.py ├── dxfImportObjects.py ├── dxfReader.py ├── dxf_import.py ├── dxf_to_heekspython.py ├── example.py ├── example_run.txt ├── facegear.py ├── fillet0.py ├── fillets.py ├── fillets2.py ├── parametric_rectangle.py ├── polar_array.py ├── polar_array.wxg ├── polar_array_readme.txt ├── revolve_it.py └── wx_dialog.py └── src ├── ConsoleCanvas.cpp ├── ConsoleCanvas.h ├── DllMain.cpp ├── HeeksPython.cpp ├── HeeksPython.h ├── HeeksPython.sln ├── HeeksPython.vcproj ├── Interface.h ├── Makefile ├── PythonConfig.h ├── PythonInterface.cpp ├── PythonInterface.h ├── stdafx.h └── vc_retro.py /autoexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/autoexec.py -------------------------------------------------------------------------------- /bitmaps/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/bitmaps/test.png -------------------------------------------------------------------------------- /debian/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/debian/README -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/heekspython-dev.dirs: -------------------------------------------------------------------------------- 1 | usr/lib/heekspython/ 2 | -------------------------------------------------------------------------------- /debian/heekspython-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/debian/heekspython-dev.install -------------------------------------------------------------------------------- /debian/heekspython0.dirs: -------------------------------------------------------------------------------- 1 | usr/lib/heekspython/ 2 | -------------------------------------------------------------------------------- /debian/heekspython0.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/debian/heekspython0.install -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/debian/rules -------------------------------------------------------------------------------- /examples/cut_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/examples/cut_example.py -------------------------------------------------------------------------------- /examples/dxfImportObjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/examples/dxfImportObjects.py -------------------------------------------------------------------------------- /examples/dxfReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/examples/dxfReader.py -------------------------------------------------------------------------------- /examples/dxf_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/examples/dxf_import.py -------------------------------------------------------------------------------- /examples/dxf_to_heekspython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/examples/dxf_to_heekspython.py -------------------------------------------------------------------------------- /examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/examples/example.py -------------------------------------------------------------------------------- /examples/example_run.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/examples/example_run.txt -------------------------------------------------------------------------------- /examples/facegear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/examples/facegear.py -------------------------------------------------------------------------------- /examples/fillet0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/examples/fillet0.py -------------------------------------------------------------------------------- /examples/fillets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/examples/fillets.py -------------------------------------------------------------------------------- /examples/fillets2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/examples/fillets2.py -------------------------------------------------------------------------------- /examples/parametric_rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/examples/parametric_rectangle.py -------------------------------------------------------------------------------- /examples/polar_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/examples/polar_array.py -------------------------------------------------------------------------------- /examples/polar_array.wxg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/examples/polar_array.wxg -------------------------------------------------------------------------------- /examples/polar_array_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/examples/polar_array_readme.txt -------------------------------------------------------------------------------- /examples/revolve_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/examples/revolve_it.py -------------------------------------------------------------------------------- /examples/wx_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/examples/wx_dialog.py -------------------------------------------------------------------------------- /src/ConsoleCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/src/ConsoleCanvas.cpp -------------------------------------------------------------------------------- /src/ConsoleCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/src/ConsoleCanvas.h -------------------------------------------------------------------------------- /src/DllMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/src/DllMain.cpp -------------------------------------------------------------------------------- /src/HeeksPython.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/src/HeeksPython.cpp -------------------------------------------------------------------------------- /src/HeeksPython.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/src/HeeksPython.h -------------------------------------------------------------------------------- /src/HeeksPython.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/src/HeeksPython.sln -------------------------------------------------------------------------------- /src/HeeksPython.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/src/HeeksPython.vcproj -------------------------------------------------------------------------------- /src/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/src/Interface.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/PythonConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/src/PythonConfig.h -------------------------------------------------------------------------------- /src/PythonInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/src/PythonInterface.cpp -------------------------------------------------------------------------------- /src/PythonInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/src/PythonInterface.h -------------------------------------------------------------------------------- /src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/src/stdafx.h -------------------------------------------------------------------------------- /src/vc_retro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heeks/heekspython-old/HEAD/src/vc_retro.py --------------------------------------------------------------------------------