├── .gitignore ├── COPYING ├── Info.plist ├── OpenSCAD.sdef ├── README-openSCAD ├── README.mkd ├── RELEASE_NOTES ├── bison.pri ├── boost.pri ├── cgal.pri ├── contrib └── scad.el ├── doc ├── OpenSCAD-classes.graffle ├── OpenSCAD-classes.pdf ├── OpenSCAD-compile.graffle ├── OpenSCAD-compile.pdf ├── OpenSCAD-polygons.graffle ├── OpenSCAD-polygons.pdf ├── TODO.txt ├── checklist-macosx.txt └── release-checklist.txt ├── eigen2.pri ├── examples ├── base.py └── example001.py ├── flex.pri ├── glew.pri ├── icons ├── OpenSCAD.icns ├── icon-alpha.png ├── icon.png ├── mask.png ├── openscad.ico ├── prefs3DView.png ├── prefsAdvanced.png ├── prefsEditor.png └── stopbutton.png ├── mjau.gdb ├── opencsg.pri ├── openscad.pro ├── openscad.qrc ├── openscad_win32.rc ├── patches ├── CGAL-OGL-Tess-Combine-Fix.patch ├── CGAL-Valgrind-Enable-Hack.patch ├── OpenCSG-1.1.1-MacOSX-port.patch ├── OpenCSG-1.2.0-MacOSX-port.patch └── OpenCSG-1.3.0-MacOSX-port.patch ├── pyscad.py ├── qxs ├── openscad.qnfa └── openscad.qxf ├── scripts ├── batch-2d.sh ├── batch-examples-stl.sh ├── batch-tests-stl.sh ├── chrpath_linux.c ├── create-stl.sh ├── googlecode_upload.py ├── macosx-build-dependencies.sh ├── macosx-sanity-check.py ├── publish-macosx.sh ├── release-common.sh ├── release-linux.sh ├── release-macosx.sh └── release-win32.sh ├── setenv_mjau.sh ├── src ├── AppleEvents.cc ├── AppleEvents.h ├── CGAL_renderer.h ├── EventFilter.h ├── GLView.h ├── MainWindow.h ├── MainWindow.ui ├── Preferences.cc ├── Preferences.h ├── Preferences.ui ├── ProgressWidget.cc ├── ProgressWidget.h ├── ProgressWidget.ui ├── builtin.h ├── cgal.h ├── cgaladv.cc ├── cgaladv_minkowski2.cc ├── cgaladv_minkowski3.cc ├── context.cc ├── context.h ├── control.cc ├── csgops.cc ├── csgterm.cc ├── csgterm.h ├── dxfdata.cc ├── dxfdata.h ├── dxfdim.cc ├── dxfdim.h ├── dxflinextrude.cc ├── dxfrotextrude.cc ├── dxftess-cgal.cc ├── dxftess-glu.cc ├── dxftess.cc ├── dxftess.h ├── editor.cc ├── editor.h ├── export.cc ├── export.h ├── expr.cc ├── expression.h ├── func.cc ├── function.h ├── glview.cc ├── grid.h ├── highlighter.cc ├── highlighter.h ├── import.cc ├── lexer.l ├── mainwin.cc ├── mathc99.cc ├── mathc99.h ├── module.cc ├── module.h ├── nef2dxf.cc ├── node.cc ├── node.h ├── openscad.cc ├── openscad.h ├── parser.y ├── polyset.cc ├── polyset.h ├── primitives.cc ├── printutils.cc ├── printutils.h ├── progress.cc ├── progress.h ├── projection.cc ├── python.cc ├── qtcolorbutton │ ├── README.txt │ ├── qtcolorbutton.cpp │ ├── qtcolorbutton.h │ └── qtcolorbutton.pri ├── render-opencsg.cc ├── render-opencsg.h ├── render.cc ├── surface.cc ├── transform.cc ├── value.cc └── value.h ├── test-code ├── batch-cgal-tests.sh ├── batch-cgal.sh ├── batch-dump.sh ├── dumptest.cc ├── dumptest.pro └── nef_polyhedron_2-bug.cc └── valgrind.supp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/COPYING -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/Info.plist -------------------------------------------------------------------------------- /OpenSCAD.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/OpenSCAD.sdef -------------------------------------------------------------------------------- /README-openSCAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/README-openSCAD -------------------------------------------------------------------------------- /README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/README.mkd -------------------------------------------------------------------------------- /RELEASE_NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/RELEASE_NOTES -------------------------------------------------------------------------------- /bison.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/bison.pri -------------------------------------------------------------------------------- /boost.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/boost.pri -------------------------------------------------------------------------------- /cgal.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/cgal.pri -------------------------------------------------------------------------------- /contrib/scad.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/contrib/scad.el -------------------------------------------------------------------------------- /doc/OpenSCAD-classes.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/doc/OpenSCAD-classes.graffle -------------------------------------------------------------------------------- /doc/OpenSCAD-classes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/doc/OpenSCAD-classes.pdf -------------------------------------------------------------------------------- /doc/OpenSCAD-compile.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/doc/OpenSCAD-compile.graffle -------------------------------------------------------------------------------- /doc/OpenSCAD-compile.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/doc/OpenSCAD-compile.pdf -------------------------------------------------------------------------------- /doc/OpenSCAD-polygons.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/doc/OpenSCAD-polygons.graffle -------------------------------------------------------------------------------- /doc/OpenSCAD-polygons.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/doc/OpenSCAD-polygons.pdf -------------------------------------------------------------------------------- /doc/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/doc/TODO.txt -------------------------------------------------------------------------------- /doc/checklist-macosx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/doc/checklist-macosx.txt -------------------------------------------------------------------------------- /doc/release-checklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/doc/release-checklist.txt -------------------------------------------------------------------------------- /eigen2.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/eigen2.pri -------------------------------------------------------------------------------- /examples/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/examples/base.py -------------------------------------------------------------------------------- /examples/example001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/examples/example001.py -------------------------------------------------------------------------------- /flex.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/flex.pri -------------------------------------------------------------------------------- /glew.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/glew.pri -------------------------------------------------------------------------------- /icons/OpenSCAD.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/icons/OpenSCAD.icns -------------------------------------------------------------------------------- /icons/icon-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/icons/icon-alpha.png -------------------------------------------------------------------------------- /icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/icons/icon.png -------------------------------------------------------------------------------- /icons/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/icons/mask.png -------------------------------------------------------------------------------- /icons/openscad.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/icons/openscad.ico -------------------------------------------------------------------------------- /icons/prefs3DView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/icons/prefs3DView.png -------------------------------------------------------------------------------- /icons/prefsAdvanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/icons/prefsAdvanced.png -------------------------------------------------------------------------------- /icons/prefsEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/icons/prefsEditor.png -------------------------------------------------------------------------------- /icons/stopbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/icons/stopbutton.png -------------------------------------------------------------------------------- /mjau.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/mjau.gdb -------------------------------------------------------------------------------- /opencsg.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/opencsg.pri -------------------------------------------------------------------------------- /openscad.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/openscad.pro -------------------------------------------------------------------------------- /openscad.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/openscad.qrc -------------------------------------------------------------------------------- /openscad_win32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/openscad_win32.rc -------------------------------------------------------------------------------- /patches/CGAL-OGL-Tess-Combine-Fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/patches/CGAL-OGL-Tess-Combine-Fix.patch -------------------------------------------------------------------------------- /patches/CGAL-Valgrind-Enable-Hack.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/patches/CGAL-Valgrind-Enable-Hack.patch -------------------------------------------------------------------------------- /patches/OpenCSG-1.1.1-MacOSX-port.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/patches/OpenCSG-1.1.1-MacOSX-port.patch -------------------------------------------------------------------------------- /patches/OpenCSG-1.2.0-MacOSX-port.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/patches/OpenCSG-1.2.0-MacOSX-port.patch -------------------------------------------------------------------------------- /patches/OpenCSG-1.3.0-MacOSX-port.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/patches/OpenCSG-1.3.0-MacOSX-port.patch -------------------------------------------------------------------------------- /pyscad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/pyscad.py -------------------------------------------------------------------------------- /qxs/openscad.qnfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/qxs/openscad.qnfa -------------------------------------------------------------------------------- /qxs/openscad.qxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/qxs/openscad.qxf -------------------------------------------------------------------------------- /scripts/batch-2d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/scripts/batch-2d.sh -------------------------------------------------------------------------------- /scripts/batch-examples-stl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/scripts/batch-examples-stl.sh -------------------------------------------------------------------------------- /scripts/batch-tests-stl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/scripts/batch-tests-stl.sh -------------------------------------------------------------------------------- /scripts/chrpath_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/scripts/chrpath_linux.c -------------------------------------------------------------------------------- /scripts/create-stl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/scripts/create-stl.sh -------------------------------------------------------------------------------- /scripts/googlecode_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/scripts/googlecode_upload.py -------------------------------------------------------------------------------- /scripts/macosx-build-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/scripts/macosx-build-dependencies.sh -------------------------------------------------------------------------------- /scripts/macosx-sanity-check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/scripts/macosx-sanity-check.py -------------------------------------------------------------------------------- /scripts/publish-macosx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/scripts/publish-macosx.sh -------------------------------------------------------------------------------- /scripts/release-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/scripts/release-common.sh -------------------------------------------------------------------------------- /scripts/release-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/scripts/release-linux.sh -------------------------------------------------------------------------------- /scripts/release-macosx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/scripts/release-macosx.sh -------------------------------------------------------------------------------- /scripts/release-win32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/scripts/release-win32.sh -------------------------------------------------------------------------------- /setenv_mjau.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/setenv_mjau.sh -------------------------------------------------------------------------------- /src/AppleEvents.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/AppleEvents.cc -------------------------------------------------------------------------------- /src/AppleEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/AppleEvents.h -------------------------------------------------------------------------------- /src/CGAL_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/CGAL_renderer.h -------------------------------------------------------------------------------- /src/EventFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/EventFilter.h -------------------------------------------------------------------------------- /src/GLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/GLView.h -------------------------------------------------------------------------------- /src/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/MainWindow.h -------------------------------------------------------------------------------- /src/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/MainWindow.ui -------------------------------------------------------------------------------- /src/Preferences.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/Preferences.cc -------------------------------------------------------------------------------- /src/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/Preferences.h -------------------------------------------------------------------------------- /src/Preferences.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/Preferences.ui -------------------------------------------------------------------------------- /src/ProgressWidget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/ProgressWidget.cc -------------------------------------------------------------------------------- /src/ProgressWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/ProgressWidget.h -------------------------------------------------------------------------------- /src/ProgressWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/ProgressWidget.ui -------------------------------------------------------------------------------- /src/builtin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/builtin.h -------------------------------------------------------------------------------- /src/cgal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/cgal.h -------------------------------------------------------------------------------- /src/cgaladv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/cgaladv.cc -------------------------------------------------------------------------------- /src/cgaladv_minkowski2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/cgaladv_minkowski2.cc -------------------------------------------------------------------------------- /src/cgaladv_minkowski3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/cgaladv_minkowski3.cc -------------------------------------------------------------------------------- /src/context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/context.cc -------------------------------------------------------------------------------- /src/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/context.h -------------------------------------------------------------------------------- /src/control.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/control.cc -------------------------------------------------------------------------------- /src/csgops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/csgops.cc -------------------------------------------------------------------------------- /src/csgterm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/csgterm.cc -------------------------------------------------------------------------------- /src/csgterm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/csgterm.h -------------------------------------------------------------------------------- /src/dxfdata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/dxfdata.cc -------------------------------------------------------------------------------- /src/dxfdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/dxfdata.h -------------------------------------------------------------------------------- /src/dxfdim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/dxfdim.cc -------------------------------------------------------------------------------- /src/dxfdim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/dxfdim.h -------------------------------------------------------------------------------- /src/dxflinextrude.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/dxflinextrude.cc -------------------------------------------------------------------------------- /src/dxfrotextrude.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/dxfrotextrude.cc -------------------------------------------------------------------------------- /src/dxftess-cgal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/dxftess-cgal.cc -------------------------------------------------------------------------------- /src/dxftess-glu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/dxftess-glu.cc -------------------------------------------------------------------------------- /src/dxftess.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/dxftess.cc -------------------------------------------------------------------------------- /src/dxftess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/dxftess.h -------------------------------------------------------------------------------- /src/editor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/editor.cc -------------------------------------------------------------------------------- /src/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/editor.h -------------------------------------------------------------------------------- /src/export.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/export.cc -------------------------------------------------------------------------------- /src/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/export.h -------------------------------------------------------------------------------- /src/expr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/expr.cc -------------------------------------------------------------------------------- /src/expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/expression.h -------------------------------------------------------------------------------- /src/func.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/func.cc -------------------------------------------------------------------------------- /src/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/function.h -------------------------------------------------------------------------------- /src/glview.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/glview.cc -------------------------------------------------------------------------------- /src/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/grid.h -------------------------------------------------------------------------------- /src/highlighter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/highlighter.cc -------------------------------------------------------------------------------- /src/highlighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/highlighter.h -------------------------------------------------------------------------------- /src/import.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/import.cc -------------------------------------------------------------------------------- /src/lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/lexer.l -------------------------------------------------------------------------------- /src/mainwin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/mainwin.cc -------------------------------------------------------------------------------- /src/mathc99.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/mathc99.cc -------------------------------------------------------------------------------- /src/mathc99.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/mathc99.h -------------------------------------------------------------------------------- /src/module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/module.cc -------------------------------------------------------------------------------- /src/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/module.h -------------------------------------------------------------------------------- /src/nef2dxf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/nef2dxf.cc -------------------------------------------------------------------------------- /src/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/node.cc -------------------------------------------------------------------------------- /src/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/node.h -------------------------------------------------------------------------------- /src/openscad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/openscad.cc -------------------------------------------------------------------------------- /src/openscad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/openscad.h -------------------------------------------------------------------------------- /src/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/parser.y -------------------------------------------------------------------------------- /src/polyset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/polyset.cc -------------------------------------------------------------------------------- /src/polyset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/polyset.h -------------------------------------------------------------------------------- /src/primitives.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/primitives.cc -------------------------------------------------------------------------------- /src/printutils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/printutils.cc -------------------------------------------------------------------------------- /src/printutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/printutils.h -------------------------------------------------------------------------------- /src/progress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/progress.cc -------------------------------------------------------------------------------- /src/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/progress.h -------------------------------------------------------------------------------- /src/projection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/projection.cc -------------------------------------------------------------------------------- /src/python.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/python.cc -------------------------------------------------------------------------------- /src/qtcolorbutton/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/qtcolorbutton/README.txt -------------------------------------------------------------------------------- /src/qtcolorbutton/qtcolorbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/qtcolorbutton/qtcolorbutton.cpp -------------------------------------------------------------------------------- /src/qtcolorbutton/qtcolorbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/qtcolorbutton/qtcolorbutton.h -------------------------------------------------------------------------------- /src/qtcolorbutton/qtcolorbutton.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/qtcolorbutton/qtcolorbutton.pri -------------------------------------------------------------------------------- /src/render-opencsg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/render-opencsg.cc -------------------------------------------------------------------------------- /src/render-opencsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/render-opencsg.h -------------------------------------------------------------------------------- /src/render.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/render.cc -------------------------------------------------------------------------------- /src/surface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/surface.cc -------------------------------------------------------------------------------- /src/transform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/transform.cc -------------------------------------------------------------------------------- /src/value.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/value.cc -------------------------------------------------------------------------------- /src/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/src/value.h -------------------------------------------------------------------------------- /test-code/batch-cgal-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/test-code/batch-cgal-tests.sh -------------------------------------------------------------------------------- /test-code/batch-cgal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/test-code/batch-cgal.sh -------------------------------------------------------------------------------- /test-code/batch-dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/test-code/batch-dump.sh -------------------------------------------------------------------------------- /test-code/dumptest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/test-code/dumptest.cc -------------------------------------------------------------------------------- /test-code/dumptest.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/test-code/dumptest.pro -------------------------------------------------------------------------------- /test-code/nef_polyhedron_2-bug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/test-code/nef_polyhedron_2-bug.cc -------------------------------------------------------------------------------- /valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmehall/pyscad/HEAD/valgrind.supp --------------------------------------------------------------------------------