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 | bc_intercept: Optional[Point] = Point(x=0, y=0, z=0) |
| 10 | initialization_data: Optional[dict] = {} # values passed for initialization_data overwrite the default initialization_data of the printer |
| 11 | save_as: Optional[str] = None |