gitextract_11c6xarw/ ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── compile_on_mingw64.sh ├── curvislice.bat ├── curvislice.sh ├── get_started_mingw64.sh ├── libs/ │ └── tclap/ │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── NEWS │ ├── README │ └── include/ │ └── tclap/ │ ├── Arg.h │ ├── ArgException.h │ ├── ArgTraits.h │ ├── CmdLine.h │ ├── CmdLineInterface.h │ ├── CmdLineOutput.h │ ├── Constraint.h │ ├── DocBookOutput.h │ ├── HelpVisitor.h │ ├── IgnoreRestVisitor.h │ ├── MultiArg.h │ ├── MultiSwitchArg.h │ ├── OptionalUnlabeledTracker.h │ ├── StandardTraits.h │ ├── StdOutput.h │ ├── SwitchArg.h │ ├── UnlabeledMultiArg.h │ ├── UnlabeledValueArg.h │ ├── ValueArg.h │ ├── ValuesConstraint.h │ ├── VersionVisitor.h │ ├── Visitor.h │ ├── XorHandler.h │ └── ZshCompletionOutput.h ├── luaGenerator.bat ├── luaGenerator.sh ├── models/ │ ├── FoilCutter.stl │ ├── airfoil.stl │ ├── anklebase_small.stl │ ├── car_med.stl │ └── wing.stl ├── pack_release.bat ├── resources/ │ └── curvi/ │ ├── features.lua │ └── printer.lua ├── src/ │ ├── MeshFormat_msh.cpp │ ├── MeshFormat_msh.h │ ├── TetMesh.cpp │ ├── TetMesh.h │ ├── config.h.in │ ├── gcode.cpp │ ├── gcode.h │ ├── helpers.h │ ├── main.cpp │ ├── thicknesses.h │ └── uncurve.cpp ├── toTetmesh.bat ├── toTetmesh.sh └── tools/ ├── icesl/ │ ├── icesl-libs/ │ │ ├── icesl-deprecated_64.luac │ │ └── icesl-stdlib_64.luac │ ├── icesl-printers/ │ │ └── fff/ │ │ └── curvi/ │ │ ├── features.lua │ │ └── printer.lua │ ├── settings_curvi.xml │ ├── settings_curvi_a8.xml │ ├── settings_curvi_delta.xml │ ├── settings_curvi_fig.xml │ ├── settings_curvi_um2.xml │ └── settings_curvi_um2_no_iron.xml └── tetviz/ ├── .gitattributes ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── libs/ │ └── CMakeLists.txt └── src/ ├── CMakeLists.txt ├── TetMesh.cpp ├── TetMesh.h ├── TetViz.cpp ├── TetViz.h ├── gcode.cpp ├── gcode.h ├── shade.fp ├── shade.vp ├── slicerror.fp └── slicerror.vp