├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── Backtransformation_GCode.py ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── Scripts for Variable Angle ├── Backtransformation_GCode_var_angle.py └── Transformation_STL_var_angle.py └── Transformation_STL.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNCKitchen/ConicalSlicer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.gcode 3 | *.stl 4 | -------------------------------------------------------------------------------- /Backtransformation_GCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNCKitchen/ConicalSlicer/HEAD/Backtransformation_GCode.py -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNCKitchen/ConicalSlicer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNCKitchen/ConicalSlicer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNCKitchen/ConicalSlicer/HEAD/README.md -------------------------------------------------------------------------------- /Scripts for Variable Angle/Backtransformation_GCode_var_angle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNCKitchen/ConicalSlicer/HEAD/Scripts for Variable Angle/Backtransformation_GCode_var_angle.py -------------------------------------------------------------------------------- /Scripts for Variable Angle/Transformation_STL_var_angle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNCKitchen/ConicalSlicer/HEAD/Scripts for Variable Angle/Transformation_STL_var_angle.py -------------------------------------------------------------------------------- /Transformation_STL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CNCKitchen/ConicalSlicer/HEAD/Transformation_STL.py --------------------------------------------------------------------------------