control to adjust the style and initialization of the gcode
| 5 | |
| 6 | |
| 7 | class GcodeControls(BaseModel): |
| 8 | 'control to adjust the style and initialization of the gcode' |
| 9 | # offset of axis-of-rotation relative to nozzle in x (positive if axis is in the positive x direction from the nozzle tip) when B=0 |
| 10 | b_offset_x: Optional[float] = 0 |
| 11 | # offset of axis-of-rotation relative to nozzle in z (positive if axis is in the positive z direction from the nozzle tip) when B=0 |
| 12 | b_offset_z: Optional[float] = None |
| 13 | # values passed for initialization_data overwrite the default initialization_data of the printer |
| 14 | initialization_data: Optional[dict] = {} |
| 15 | save_as: Optional[str] = None |