├── .gitignore ├── LICENSE ├── README.md ├── docs └── materials │ ├── GO_MELT_LOGO.png │ └── example_single_track.gif ├── examples ├── README.md ├── example.json └── gcodefiles │ └── example.gcode ├── go_melt ├── README.md ├── computeFunctions.py ├── createPath.py └── go_melt.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLnorthwestern/GO-MELT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLnorthwestern/GO-MELT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLnorthwestern/GO-MELT/HEAD/README.md -------------------------------------------------------------------------------- /docs/materials/GO_MELT_LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLnorthwestern/GO-MELT/HEAD/docs/materials/GO_MELT_LOGO.png -------------------------------------------------------------------------------- /docs/materials/example_single_track.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLnorthwestern/GO-MELT/HEAD/docs/materials/example_single_track.gif -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLnorthwestern/GO-MELT/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLnorthwestern/GO-MELT/HEAD/examples/example.json -------------------------------------------------------------------------------- /examples/gcodefiles/example.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLnorthwestern/GO-MELT/HEAD/examples/gcodefiles/example.gcode -------------------------------------------------------------------------------- /go_melt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLnorthwestern/GO-MELT/HEAD/go_melt/README.md -------------------------------------------------------------------------------- /go_melt/computeFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLnorthwestern/GO-MELT/HEAD/go_melt/computeFunctions.py -------------------------------------------------------------------------------- /go_melt/createPath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLnorthwestern/GO-MELT/HEAD/go_melt/createPath.py -------------------------------------------------------------------------------- /go_melt/go_melt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLnorthwestern/GO-MELT/HEAD/go_melt/go_melt.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLnorthwestern/GO-MELT/HEAD/requirements.txt --------------------------------------------------------------------------------