├── .github └── workflows │ └── main.yml ├── .gitignore ├── GCode ├── .gitignore ├── cura.gcode ├── ideamaker.gcode ├── m486.gcode ├── prusaslicer-issue1.gcode ├── prusaslicer.gcode ├── regressions │ └── issue_2_retractions.gcode ├── slic3r.gcode ├── superslicer.gcode └── unsupported │ ├── icesl.gcode │ ├── kirimoto.gcode │ ├── kisslicer.1.6.3.gcode │ └── kisslicer.2.0.6.gcode ├── LICENSE ├── README.md ├── STLs ├── cube_1.stl ├── cylinder_2.stl ├── gen_objects.py └── union_3.stl ├── poetry.lock ├── preprocess_cancellation.py ├── pyproject.toml ├── test_preprocessor.py ├── test_preprocessor_with_shapely.py └── tools ├── m486.py └── plot_defines.py /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/.gitignore -------------------------------------------------------------------------------- /GCode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/GCode/.gitignore -------------------------------------------------------------------------------- /GCode/cura.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/GCode/cura.gcode -------------------------------------------------------------------------------- /GCode/ideamaker.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/GCode/ideamaker.gcode -------------------------------------------------------------------------------- /GCode/m486.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/GCode/m486.gcode -------------------------------------------------------------------------------- /GCode/prusaslicer-issue1.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/GCode/prusaslicer-issue1.gcode -------------------------------------------------------------------------------- /GCode/prusaslicer.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/GCode/prusaslicer.gcode -------------------------------------------------------------------------------- /GCode/regressions/issue_2_retractions.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/GCode/regressions/issue_2_retractions.gcode -------------------------------------------------------------------------------- /GCode/slic3r.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/GCode/slic3r.gcode -------------------------------------------------------------------------------- /GCode/superslicer.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/GCode/superslicer.gcode -------------------------------------------------------------------------------- /GCode/unsupported/icesl.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/GCode/unsupported/icesl.gcode -------------------------------------------------------------------------------- /GCode/unsupported/kirimoto.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/GCode/unsupported/kirimoto.gcode -------------------------------------------------------------------------------- /GCode/unsupported/kisslicer.1.6.3.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/GCode/unsupported/kisslicer.1.6.3.gcode -------------------------------------------------------------------------------- /GCode/unsupported/kisslicer.2.0.6.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/GCode/unsupported/kisslicer.2.0.6.gcode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/README.md -------------------------------------------------------------------------------- /STLs/cube_1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/STLs/cube_1.stl -------------------------------------------------------------------------------- /STLs/cylinder_2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/STLs/cylinder_2.stl -------------------------------------------------------------------------------- /STLs/gen_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/STLs/gen_objects.py -------------------------------------------------------------------------------- /STLs/union_3.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/STLs/union_3.stl -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/poetry.lock -------------------------------------------------------------------------------- /preprocess_cancellation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/preprocess_cancellation.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/test_preprocessor.py -------------------------------------------------------------------------------- /test_preprocessor_with_shapely.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/test_preprocessor_with_shapely.py -------------------------------------------------------------------------------- /tools/m486.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/tools/m486.py -------------------------------------------------------------------------------- /tools/plot_defines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kageurufu/preprocess_cancellation/HEAD/tools/plot_defines.py --------------------------------------------------------------------------------