- added in CNCJob preferences new preferences that allow compensation for the CNC bed skew/tilt (axes not being square one to another)

- all pre-processors are altered such they can adjust the gcode to use the compensation values set in Preferences -> CNC-Job section
This commit is contained in:
Marius Stanciu
2022-01-09 19:44:56 +02:00
committed by Marius
parent 9d9bfa8b03
commit e219562bbb
30 changed files with 474 additions and 45 deletions

View File

@@ -321,6 +321,15 @@ class FlatCAMDefaults:
"cncjob_coords_type": "G90",
"cncjob_coords_decimals": 4,
"cncjob_fr_decimals": 2,
# bed square compensation
"cncjob_bed_max_x": 300,
"cncjob_bed_max_y": 400,
"cncjob_bed_offset_x": 0,
"cncjob_bed_offset_y": 0,
"cncjob_bed_skew_x": 0,
"cncjob_bed_skew_y": 0,
"cncjob_steps_per_circle": 16,
"cncjob_footer": False,
"cncjob_line_ending": False,