printrun-src/printrun/svg2gcode/config.py

Sat, 04 Jun 2016 12:41:32 +0200

author
mbayer
date
Sat, 04 Jun 2016 12:41:32 +0200
changeset 22
4c9bb8f93ae8
parent 16
36d478bde840
permissions
-rw-r--r--

Added the Lasercut settings to the pronterface options dialog
(default settings when used without pronterwindow)

"""G-code emitted at the start of processing the SVG file"""
preamble = "G28\nG1 Z5.0"

"""G-code emitted at the end of processing the SVG file"""
postamble = "G28"

"""G-code emitted before processing a SVG shape"""
shape_preamble = "G4 P200"

"""G-code emitted after processing a SVG shape"""
shape_postamble = "G4 P200"

"""Print bed width in mm"""
bed_max_x = 200

"""Print bed height in mm"""
bed_max_y = 200

""" 
Used to control the smoothness/sharpness of the curves.
Smaller the value greater the sharpness. Make sure the
value is greater than 0.1
"""
smoothness = 0.2

mercurial