'Perimeter_Outside_Stretch_Over_Perimeter_Width_ratio': DEFSET,
'Stretch_From_Distance_Over_Perimeter_Width_ratio': DEFSET,
},'skin': {
- 'Activate_Skin': "False",
- 'Horizontal_Infill_Divisions_integer': DEFSET,
- 'Horizontal_Perimeter_Divisions_integer': DEFSET,
- 'Vertical_Divisions_integer': DEFSET,
- 'Hop_When_Extruding_Infill': DEFSET,
- 'Layers_From_index': DEFSET,
+ 'Activate_Skin': storedSetting("enable_skin"),
+ 'Horizontal_Infill_Divisions_integer': "1",
+ 'Horizontal_Perimeter_Divisions_integer': "1",
+ 'Vertical_Divisions_integer': "2",
+ 'Hop_When_Extruding_Infill': "False",
+ 'Layers_From_index': "1",
},'comb': {
'Activate_Comb': "True",
'Running_Jump_Space_mm': DEFSET,
c = configBase.SettingRow(right, "Initial layer thickness (mm)", 'bottom_thickness', '0.0', 'Layer thickness of the bottom layer. A thicker bottom layer makes sticking to the bed easier. Set to 0.0 to have the bottom layer thickness the same as the other layers.')
validators.validFloat(c, 0.0)
validators.warningAbove(c, lambda : (float(profile.getProfileSetting('nozzle_size')) * 3.0 / 4.0), "A bottom layer of more then %.2fmm (3/4 nozzle size) usually give bad results and is not recommended.")
+ c = configBase.SettingRow(right, "Enable 'skin'", 'enable_skin', False, 'Skin prints the outer lines of the prints twice, each time with half the thickness. This gives the illusion of a higher print quality.')
nb.AddPage(alterationPanel.alterationPanel(nb), "Start/End-GCode")
else:
pos.z += z * scale
#Check if we have a new layer.
- if oldPos.z != pos.z and startCodeDone:
+ if oldPos.z < pos.z and startCodeDone and len(currentLayer) > 0:
self.layerList.append(currentLayer)
currentLayer = []
if f is not None:
'support_rate': '50',\r
'support_distance': '0.5',\r
'joris': 'False',\r
+ 'enable_skin': 'False',\r
'enable_raft': 'False',\r
'cool_min_feedrate': '5',\r
'bridge_speed': '100',\r