Merge branch '4.8' of https://github.com/Ultimaker/Cura into 4.8

This commit is contained in:
Kostas Karmas 2020-11-04 09:22:42 +01:00
commit 726175a01d
13 changed files with 256 additions and 254 deletions

View File

@ -1901,9 +1901,10 @@ class CuraApplication(QtApplication):
if select_models_on_load: if select_models_on_load:
Selection.add(node) Selection.add(node)
try:
arrange(nodes_to_arrange, self.getBuildVolume(), fixed_nodes) arrange(nodes_to_arrange, self.getBuildVolume(), fixed_nodes)
except:
Logger.logException("e", "Failed to arrange the models")
self.fileCompleted.emit(file_name) self.fileCompleted.emit(file_name)
def addNonSliceableExtension(self, extension): def addNonSliceableExtension(self, extension):

View File

@ -125,7 +125,8 @@ class SliceInfo(QObject, Extension):
data["schema_version"] = 0 data["schema_version"] = 0
data["cura_version"] = self._application.getVersion() data["cura_version"] = self._application.getVersion()
data["cura_build_type"] = ApplicationMetadata.CuraBuildType data["cura_build_type"] = ApplicationMetadata.CuraBuildType
data["organization_id"] = user_profile.get("organization_id", None) if user_profile else None org_id = user_profile.get("organization_id", None) if user_profile else None
data["organization_id"] = org_id if org_id else None
data["subscriptions"] = user_profile.get("subscriptions", []) if user_profile else [] data["subscriptions"] = user_profile.get("subscriptions", []) if user_profile else []
active_mode = self._application.getPreferences().getValue("cura/active_mode") active_mode = self._application.getPreferences().getValue("cura/active_mode")

View File

@ -124,7 +124,7 @@
"adaptive_layer_height_variation": { "value": 0.04 }, "adaptive_layer_height_variation": { "value": 0.04 },
"adaptive_layer_height_variation_step": { "value": 0.04 }, "adaptive_layer_height_variation_step": { "value": 0.04 },
"meshfix_maximum_resolution": { "value": "0.05" }, "meshfix_maximum_resolution": { "value": "0.25" },
"meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" },
"top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" }, "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" },

View File

@ -235,11 +235,11 @@
"adaptive_layer_height_variation": { "value": 0.04 }, "adaptive_layer_height_variation": { "value": 0.04 },
"adaptive_layer_height_variation_step": { "value": 0.04 }, "adaptive_layer_height_variation_step": { "value": 0.04 },
"meshfix_maximum_resolution": { "value": "0.05" }, "meshfix_maximum_resolution": { "value": "0.25" },
"meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" },
"support_angle": { "value": "math.floor(math.degrees(math.atan(line_width / 2.0 / layer_height)))" }, "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width / 2.0 / layer_height)))" },
"support_pattern": { "value": "'zigzag'" }, "support_pattern": { "value": "'zigzag'" },
"support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" },
"support_use_towers": { "value": false }, "support_use_towers": { "value": false },
"support_xy_distance": { "value": "wall_line_width_0 * 2" }, "support_xy_distance": { "value": "wall_line_width_0 * 2" },

View File

@ -139,7 +139,7 @@
"adaptive_layer_height_variation": { "value": 0.04 }, "adaptive_layer_height_variation": { "value": 0.04 },
"adaptive_layer_height_variation_step": { "value": 0.04 }, "adaptive_layer_height_variation_step": { "value": 0.04 },
"meshfix_maximum_resolution": { "value": "0.05" }, "meshfix_maximum_resolution": { "value": "0.25" },
"meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" },
"support_angle": { "value": "math.floor(math.degrees(math.atan(line_width / 2.0 / layer_height)))" }, "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width / 2.0 / layer_height)))" },

View File

@ -238,7 +238,7 @@
"adaptive_layer_height_variation": { "value": 0.04 }, "adaptive_layer_height_variation": { "value": 0.04 },
"adaptive_layer_height_variation_step": { "value": 0.04 }, "adaptive_layer_height_variation_step": { "value": 0.04 },
"meshfix_maximum_resolution": { "value": "0.05" }, "meshfix_maximum_resolution": { "value": "0.25" },
"meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" },
"support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" },

View File

@ -75,6 +75,6 @@
"adhesion_type": { "default_value": "skirt" }, "adhesion_type": { "default_value": "skirt" },
"brim_outside_only": { "default_value": false }, "brim_outside_only": { "default_value": false },
"meshfix_maximum_resolution": { "default_value": 0.05 } "meshfix_maximum_resolution": { "default_value": 0.25 }
} }
} }

View File

@ -1,259 +1,259 @@
{ {
"name": "Flying Bear Base Printer", "name": "Flying Bear Base Printer",
"version": 2, "version": 2,
"inherits": "fdmprinter", "inherits": "fdmprinter",
"metadata": { "metadata": {
"visible": false, "visible": false,
"author": "oducceu", "author": "oducceu",
"manufacturer": "Flying Bear", "manufacturer": "Flying Bear",
"file_formats": "text/x-gcode", "file_formats": "text/x-gcode",
"first_start_actions": ["MachineSettingsAction"], "first_start_actions": ["MachineSettingsAction"],
"machine_extruder_trains": { "0": "flyingbear_base_extruder_0" }, "machine_extruder_trains": { "0": "flyingbear_base_extruder_0" },
"has_materials": true, "has_materials": true,
"preferred_material": "generic_pla", "preferred_material": "generic_pla",
"has_variants": true, "has_variants": true,
"variants_name": "Nozzle Size", "variants_name": "Nozzle Size",
"preferred_variant_name": "0.4mm Nozzle", "preferred_variant_name": "0.4mm Nozzle",
"has_machine_quality": true, "has_machine_quality": true,
"preferred_quality_type": "normal", "preferred_quality_type": "normal",
"exclude_materials": [ "exclude_materials": [
"chromatik_pla", "chromatik_pla",
"dsm_arnitel2045_175", "dsm_arnitel2045_175",
"dsm_novamid1070_175", "dsm_novamid1070_175",
"emotiontech_abs", "emotiontech_abs",
"emotiontech_absx", "emotiontech_absx",
"emotiontech_asax", "emotiontech_asax",
"emotiontech_bvoh", "emotiontech_bvoh",
"emotiontech_hips", "emotiontech_hips",
"emotiontech_petg", "emotiontech_petg",
"emotiontech_pla", "emotiontech_pla",
"emotiontech_pva-m", "emotiontech_pva-m",
"emotiontech_pva-s", "emotiontech_pva-s",
"emotiontech_tpu98a", "emotiontech_tpu98a",
"fabtotum_abs", "fabtotum_abs",
"fabtotum_nylon", "fabtotum_nylon",
"fabtotum_pla", "fabtotum_pla",
"fabtotum_tpu", "fabtotum_tpu",
"fiberlogy_hd_pla", "fiberlogy_hd_pla",
"filo3d_pla", "filo3d_pla",
"filo3d_pla_green", "filo3d_pla_green",
"filo3d_pla_red", "filo3d_pla_red",
"generic_abs", "generic_abs",
"generic_bam", "generic_bam",
"generic_cffcpe", "generic_cffcpe",
"generic_cffpa", "generic_cffpa",
"generic_cpe", "generic_cpe",
"generic_cpe_plus", "generic_cpe_plus",
"generic_gffcpe", "generic_gffcpe",
"generic_gffpa", "generic_gffpa",
"generic_hips", "generic_hips",
"generic_nylon", "generic_nylon",
"generic_pc", "generic_pc",
"generic_petg", "generic_petg",
"generic_pla", "generic_pla",
"generic_pp", "generic_pp",
"generic_pva", "generic_pva",
"generic_tough_pla", "generic_tough_pla",
"generic_tpu", "generic_tpu",
"imade3d_petg_175", "imade3d_petg_175",
"imade3d_pla_175", "imade3d_pla_175",
"innofill_innoflex60_175", "innofill_innoflex60_175",
"leapfrog_abs_natural", "leapfrog_abs_natural",
"leapfrog_epla_natural", "leapfrog_epla_natural",
"leapfrog_pva_natural", "leapfrog_pva_natural",
"octofiber_pla", "octofiber_pla",
"polyflex_pla", "polyflex_pla",
"polymax_pla", "polymax_pla",
"polyplus_pla", "polyplus_pla",
"polywood_pla", "polywood_pla",
"redd_abs", "redd_abs",
"redd_asa", "redd_asa",
"redd_hips", "redd_hips",
"redd_nylon", "redd_nylon",
"redd_petg", "redd_petg",
"redd_pla", "redd_pla",
"redd_tpe", "redd_tpe",
"structur3d_dap100silicone", "structur3d_dap100silicone",
"tizyx_abs", "tizyx_abs",
"tizyx_flex", "tizyx_flex",
"tizyx_petg", "tizyx_petg",
"tizyx_pla", "tizyx_pla",
"tizyx_pla_bois", "tizyx_pla_bois",
"tizyx_pva", "tizyx_pva",
"ultimaker_abs_black", "ultimaker_abs_black",
"ultimaker_abs_blue", "ultimaker_abs_blue",
"ultimaker_abs_green", "ultimaker_abs_green",
"ultimaker_abs_grey", "ultimaker_abs_grey",
"ultimaker_abs_orange", "ultimaker_abs_orange",
"ultimaker_abs_pearl-gold", "ultimaker_abs_pearl-gold",
"ultimaker_abs_red", "ultimaker_abs_red",
"ultimaker_abs_silver-metallic", "ultimaker_abs_silver-metallic",
"ultimaker_abs_white", "ultimaker_abs_white",
"ultimaker_abs_yellow", "ultimaker_abs_yellow",
"ultimaker_bam", "ultimaker_bam",
"ultimaker_cpe_black", "ultimaker_cpe_black",
"ultimaker_cpe_blue", "ultimaker_cpe_blue",
"ultimaker_cpe_dark-grey", "ultimaker_cpe_dark-grey",
"ultimaker_cpe_green", "ultimaker_cpe_green",
"ultimaker_cpe_light-grey", "ultimaker_cpe_light-grey",
"ultimaker_cpe_plus_black", "ultimaker_cpe_plus_black",
"ultimaker_cpe_plus_transparent", "ultimaker_cpe_plus_transparent",
"ultimaker_cpe_plus_white", "ultimaker_cpe_plus_white",
"ultimaker_cpe_red", "ultimaker_cpe_red",
"ultimaker_cpe_transparent", "ultimaker_cpe_transparent",
"ultimaker_cpe_white", "ultimaker_cpe_white",
"ultimaker_cpe_yellow", "ultimaker_cpe_yellow",
"ultimaker_nylon_black", "ultimaker_nylon_black",
"ultimaker_nylon_transparent", "ultimaker_nylon_transparent",
"ultimaker_pc_black", "ultimaker_pc_black",
"ultimaker_pc_transparent", "ultimaker_pc_transparent",
"ultimaker_pc_white", "ultimaker_pc_white",
"ultimaker_pla_black", "ultimaker_pla_black",
"ultimaker_pla_blue", "ultimaker_pla_blue",
"ultimaker_pla_green", "ultimaker_pla_green",
"ultimaker_pla_magenta", "ultimaker_pla_magenta",
"ultimaker_pla_orange", "ultimaker_pla_orange",
"ultimaker_pla_pearl-white", "ultimaker_pla_pearl-white",
"ultimaker_pla_red", "ultimaker_pla_red",
"ultimaker_pla_silver-metallic", "ultimaker_pla_silver-metallic",
"ultimaker_pla_transparent", "ultimaker_pla_transparent",
"ultimaker_pla_white", "ultimaker_pla_white",
"ultimaker_pla_yellow", "ultimaker_pla_yellow",
"ultimaker_pp_transparent", "ultimaker_pp_transparent",
"ultimaker_pva", "ultimaker_pva",
"ultimaker_tough_pla_black", "ultimaker_tough_pla_black",
"ultimaker_tough_pla_green", "ultimaker_tough_pla_green",
"ultimaker_tough_pla_red", "ultimaker_tough_pla_red",
"ultimaker_tough_pla_white", "ultimaker_tough_pla_white",
"ultimaker_tpu_black", "ultimaker_tpu_black",
"ultimaker_tpu_blue", "ultimaker_tpu_blue",
"ultimaker_tpu_red", "ultimaker_tpu_red",
"ultimaker_tpu_white", "ultimaker_tpu_white",
"verbatim_bvoh_175", "verbatim_bvoh_175",
"Vertex_Delta_ABS", "Vertex_Delta_ABS",
"Vertex_Delta_PET", "Vertex_Delta_PET",
"Vertex_Delta_PLA", "Vertex_Delta_PLA",
"Vertex_Delta_PLA_Glitter", "Vertex_Delta_PLA_Glitter",
"Vertex_Delta_PLA_Mat", "Vertex_Delta_PLA_Mat",
"Vertex_Delta_PLA_Satin", "Vertex_Delta_PLA_Satin",
"Vertex_Delta_PLA_Wood", "Vertex_Delta_PLA_Wood",
"Vertex_Delta_TPU", "Vertex_Delta_TPU",
"zyyx_pro_flex", "zyyx_pro_flex",
"zyyx_pro_pla" "zyyx_pro_pla"
] ]
}, },
"overrides": { "overrides": {
"machine_name": { "default_value": "Flying Bear Base Printer" }, "machine_name": { "default_value": "Flying Bear Base Printer" },
"machine_start_gcode": { "default_value": "M220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\n;Code for nozzle cleaning and flow normalization\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.4 Y20 Z0.28 F5000.0\nG1 X10.4 Y170.0 Z0.28 F1500.0 E15\nG1 X10.1 Y170.0 Z0.28 F5000.0\nG1 X10.1 Y40 Z0.28 F1500.0 E30\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up" },
"machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract the filament\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\n\nG28 X0 Y0 ;Home X and Y\n\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z" }, "machine_start_gcode": { "default_value": "M220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\n;Code for nozzle cleaning and flow normalization\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.4 Y20 Z0.28 F5000.0\nG1 X10.4 Y170.0 Z0.28 F1500.0 E15\nG1 X10.1 Y170.0 Z0.28 F5000.0\nG1 X10.1 Y40 Z0.28 F1500.0 E30\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up" },
"machine_heated_bed": { "default_value": true },
"machine_shape": { "default_value": "rectangular" },
"machine_buildplate_type": { "value": "glass" },
"machine_center_is_zero": { "default_value": false },
"material_diameter": { "default_value": 1.75 }, "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract the filament\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\n\nG28 X0 Y0 ;Home X and Y\n\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z" },
"layer_height_0": { "value": 0.2 }, "machine_heated_bed": { "default_value": true },
"line_width": { "value": "machine_nozzle_size" }, "machine_shape": { "default_value": "rectangular" },
"skin_line_width": { "value": "machine_nozzle_size" }, "machine_buildplate_type": { "value": "glass" },
"infill_line_width": { "value": "line_width + 0.1" }, "machine_center_is_zero": { "default_value": false },
"skirt_brim_line_width": { "value": "line_width + 0.1" },
"support_interface_line_width": { "value": "line_width - 0.1" },
"wall_thickness": { "value": "line_width * 3" }, "material_diameter": { "default_value": 1.75 },
"wall_0_wipe_dist": { "value": 0.0 },
"top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3 if layer_height > 0.15 else 0.8" },
"optimize_wall_printing_order": { "value": true },
"travel_compensate_overlapping_walls_0_enabled": { "value": false },
"fill_perimeter_gaps": { "value": "'everywhere'" },
"filter_out_tiny_gaps": { "value": false },
"fill_outline_gaps": { "value": false },
"z_seam_type": { "value": "'sharpest_corner'" },
"z_seam_corner": { "value": "'z_seam_corner_weighted'" },
"infill_sparse_density": { "value": 20 }, "layer_height_0": { "value": 0.2 },
"infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, "line_width": { "value": "machine_nozzle_size" },
"infill_overlap": { "value": 30 }, "skin_line_width": { "value": "machine_nozzle_size" },
"skin_overlap": { "value": 10 }, "infill_line_width": { "value": "line_width + 0.1" },
"infill_wipe_dist": { "value": 0.0 }, "skirt_brim_line_width": { "value": "line_width + 0.1" },
"infill_before_walls": { "value": false }, "support_interface_line_width": { "value": "line_width - 0.1" },
"infill_enable_travel_optimization": { "value": true },
"material_initial_print_temperature": { "value": "material_print_temperature" }, "wall_thickness": { "value": "line_width * 3" },
"material_final_print_temperature": { "value": "material_print_temperature" }, "wall_0_wipe_dist": { "value": 0.0 },
"material_flow": { "value": 100 }, "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3 if layer_height > 0.15 else 0.8" },
"retraction_enable": { "value": true }, "optimize_wall_printing_order": { "value": true },
"retraction_min_travel": { "value": 1.5 }, "travel_compensate_overlapping_walls_0_enabled": { "value": false },
"retraction_count_max": { "value": 100 }, "fill_perimeter_gaps": { "value": "'everywhere'" },
"retraction_extrusion_window": { "value": 10 }, "filter_out_tiny_gaps": { "value": false },
"fill_outline_gaps": { "value": false },
"z_seam_type": { "value": "'sharpest_corner'" },
"z_seam_corner": { "value": "'z_seam_corner_weighted'" },
"speed_print": { "value": 60 } , "infill_sparse_density": { "value": 20 },
"speed_infill": { "value": "speed_print * 1.5" }, "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" },
"speed_wall": { "value": "speed_print / 2" }, "infill_overlap": { "value": 30 },
"speed_wall_0": { "value": "speed_wall" }, "skin_overlap": { "value": 10 },
"speed_wall_x": { "value": "speed_print" }, "infill_wipe_dist": { "value": 0.0 },
"speed_roofing": { "value": "speed_topbottom" }, "infill_before_walls": { "value": false },
"speed_topbottom": { "value": "speed_print / 2" }, "infill_enable_travel_optimization": { "value": true },
"speed_support": { "value": "speed_print" },
"speed_support_interface": { "value": "speed_topbottom" },
"speed_prime_tower": { "value": "speed_topbottom" },
"speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" },
"speed_layer_0": { "value": "speed_print / 2" },
"speed_print_layer_0": { "value": "speed_layer_0" },
"speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" },
"skirt_brim_speed": { "value": "speed_layer_0" },
"speed_z_hop": { "value": 5 },
"retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, "material_initial_print_temperature": { "value": "material_print_temperature" },
"travel_retract_before_outer_wall": { "value": true }, "material_final_print_temperature": { "value": "material_print_temperature" },
"retraction_combing_max_distance": { "value": 30 }, "material_flow": { "value": 100 },
"travel_avoid_other_parts": { "value": true }, "retraction_enable": { "value": true },
"travel_avoid_supports": { "value": true }, "retraction_min_travel": { "value": 1.5 },
"retraction_hop_enabled": { "value": false }, "retraction_count_max": { "value": 100 },
"retraction_hop": { "value": 0.2 }, "retraction_extrusion_window": { "value": 10 },
"cool_fan_enabled": { "value": true }, "speed_print": { "value": 60 } ,
"cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, "speed_infill": { "value": "speed_print * 1.5" },
"cool_min_layer_time": { "value": 10 }, "speed_wall": { "value": "speed_print / 2" },
"speed_wall_0": { "value": "speed_wall" },
"speed_wall_x": { "value": "speed_print" },
"speed_roofing": { "value": "speed_topbottom" },
"speed_topbottom": { "value": "speed_print / 2" },
"speed_support": { "value": "speed_print" },
"speed_support_interface": { "value": "speed_topbottom" },
"speed_prime_tower": { "value": "speed_topbottom" },
"speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" },
"speed_layer_0": { "value": "speed_print / 2" },
"speed_print_layer_0": { "value": "speed_layer_0" },
"speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" },
"skirt_brim_speed": { "value": "speed_layer_0" },
"speed_z_hop": { "value": 5 },
"support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" },
"support_pattern": { "value": "'zigzag'" }, "travel_retract_before_outer_wall": { "value": true },
"support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, "retraction_combing_max_distance": { "value": 30 },
"support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, "travel_avoid_other_parts": { "value": true },
"support_xy_distance": { "value": "wall_line_width_0 * 2" }, "travel_avoid_supports": { "value": true },
"support_xy_overrides_z": { "value": "'xy_overrides_z'" }, "retraction_hop_enabled": { "value": false },
"support_xy_distance_overhang": { "value": "wall_line_width_0" }, "retraction_hop": { "value": 0.2 },
"minimum_support_area": { "value": 5 },
"minimum_interface_area": { "value": 10 },
"support_interface_enable": { "value": true },
"support_interface_height": { "value": "layer_height * 4" },
"support_interface_skip_height": { "value": 0.2 },
"support_interface_density": { "value": 33 },
"support_interface_pattern": { "value": "'grid'" },
"support_wall_count": { "value": 1 },
"support_brim_enable": { "value": true },
"support_brim_width": { "value": 4 },
"support_use_towers": { "value": false },
"adhesion_type": { "value": "'skirt'" }, "cool_fan_enabled": { "value": true },
"skirt_line_count": { "value": 3 }, "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" },
"skirt_gap": { "value": 10 }, "cool_min_layer_time": { "value": 10 },
"skirt_brim_minimal_length": { "value": 50 },
"brim_replaces_support": { "value": false },
"brim_gap": { "value": "line_width / 2 if line_width < 0.4 else 0.2" },
"meshfix_maximum_resolution": { "value": 0.05 }, "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" },
"meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, "support_pattern": { "value": "'zigzag'" },
"support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" },
"support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" },
"support_xy_distance": { "value": "wall_line_width_0 * 2" },
"support_xy_overrides_z": { "value": "'xy_overrides_z'" },
"support_xy_distance_overhang": { "value": "wall_line_width_0" },
"minimum_support_area": { "value": 5 },
"minimum_interface_area": { "value": 10 },
"support_interface_enable": { "value": true },
"support_interface_height": { "value": "layer_height * 4" },
"support_interface_skip_height": { "value": 0.2 },
"support_interface_density": { "value": 33 },
"support_interface_pattern": { "value": "'grid'" },
"support_wall_count": { "value": 1 },
"support_brim_enable": { "value": true },
"support_brim_width": { "value": 4 },
"support_use_towers": { "value": false },
"adaptive_layer_height_variation": { "value": 0.04 }, "adhesion_type": { "value": "'skirt'" },
"adaptive_layer_height_variation_step": { "value": 0.04 } "skirt_line_count": { "value": 3 },
"skirt_gap": { "value": 10 },
"skirt_brim_minimal_length": { "value": 50 },
"brim_replaces_support": { "value": false },
"brim_gap": { "value": "line_width / 2 if line_width < 0.4 else 0.2" },
"meshfix_maximum_resolution": { "value": 0.25 },
"meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" },
"adaptive_layer_height_variation": { "value": 0.04 },
"adaptive_layer_height_variation_step": { "value": 0.04 }
} }
} }

View File

@ -55,7 +55,7 @@
"cool_fan_full_at_height":{ "value":"layer_height_0 + 2 * layer_height" }, "cool_fan_full_at_height":{ "value":"layer_height_0 + 2 * layer_height" },
"cool_fan_enabled":{ "value":true }, "cool_fan_enabled":{ "value":true },
"cool_min_layer_time":{ "value":10 }, "cool_min_layer_time":{ "value":10 },
"meshfix_maximum_resolution":{ "value":"0.05" }, "meshfix_maximum_resolution":{ "value":"0.25" },
"meshfix_maximum_travel_resolution":{ "value":"meshfix_maximum_resolution" }, "meshfix_maximum_travel_resolution":{ "value":"meshfix_maximum_resolution" },
"adhesion_type": { "value": "'none' if support_enable else 'skirt'" }, "adhesion_type": { "value": "'none' if support_enable else 'skirt'" },
"skirt_gap":{ "value":5.0 }, "skirt_gap":{ "value":5.0 },

View File

@ -55,7 +55,7 @@
"cool_fan_full_at_height":{ "value":"layer_height_0 + 2 * layer_height" }, "cool_fan_full_at_height":{ "value":"layer_height_0 + 2 * layer_height" },
"cool_fan_enabled":{ "value":true }, "cool_fan_enabled":{ "value":true },
"cool_min_layer_time":{ "value":10 }, "cool_min_layer_time":{ "value":10 },
"meshfix_maximum_resolution":{ "value":"0.05" }, "meshfix_maximum_resolution":{ "value":"0.25" },
"meshfix_maximum_travel_resolution":{ "value":"meshfix_maximum_resolution" }, "meshfix_maximum_travel_resolution":{ "value":"meshfix_maximum_resolution" },
"adhesion_type": { "value": "'none' if support_enable else 'skirt'" }, "adhesion_type": { "value": "'none' if support_enable else 'skirt'" },
"skirt_gap":{ "value":5.0 }, "skirt_gap":{ "value":5.0 },

View File

@ -28,7 +28,7 @@
"expand_skins_expand_distance":{"value":0.8}, "expand_skins_expand_distance":{"value":0.8},
"fill_outline_gaps":{"default_value":false}, "fill_outline_gaps":{"default_value":false},
"infill_sparse_density":{"value":15}, "infill_sparse_density":{"value":15},
"meshfix_maximum_resolution":{"value":0.05}, "meshfix_maximum_resolution":{"value":0.25},
"optimize_wall_printing_order":{"value":true}, "optimize_wall_printing_order":{"value":true},
"retract_at_layer_change":{"value":false}, "retract_at_layer_change":{"value":false},
"retraction_amount":{"value":4.5}, "retraction_amount":{"value":4.5},

View File

@ -243,7 +243,7 @@
"adaptive_layer_height_variation": { "value": 0.04 }, "adaptive_layer_height_variation": { "value": 0.04 },
"adaptive_layer_height_variation_step": { "value": 0.04 }, "adaptive_layer_height_variation_step": { "value": 0.04 },
"meshfix_maximum_resolution": { "value": "0.05" }, "meshfix_maximum_resolution": { "value": "0.25" },
"meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" },
"support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" },

View File

@ -138,7 +138,7 @@
"adaptive_layer_height_variation": { "value": 0.04 }, "adaptive_layer_height_variation": { "value": 0.04 },
"adaptive_layer_height_variation_step": { "value": 0.04 }, "adaptive_layer_height_variation_step": { "value": 0.04 },
"meshfix_maximum_resolution": { "value": "0.05" }, "meshfix_maximum_resolution": { "value": "0.25" },
"meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" },
"support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" },