Improving new subtract method
This commit is contained in:
parent
d40675d193
commit
5b77462b91
9 changed files with 150 additions and 138 deletions
|
|
@ -168,7 +168,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
|
|||
public const string min_print_speed = nameof(min_print_speed);
|
||||
public const string min_skirt_length = nameof(min_skirt_length);
|
||||
public const string model = nameof(model);
|
||||
public const string montonic_solid_infill = nameof(montonic_solid_infill);
|
||||
public const string monotonic_solid_infill = nameof(monotonic_solid_infill);
|
||||
public const string nozzle_diameter = nameof(nozzle_diameter);
|
||||
public const string number_of_first_layers = nameof(number_of_first_layers);
|
||||
public const string oem_profile_token = nameof(oem_profile_token);
|
||||
|
|
|
|||
|
|
@ -77,11 +77,11 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
|
|||
},
|
||||
new SliceSettingData()
|
||||
{
|
||||
SlicerConfigName = SettingsKey.montonic_solid_infill,
|
||||
SlicerConfigName = SettingsKey.monotonic_solid_infill,
|
||||
PresentationName = "Monotonic Solid Infill".Localize().Localize(),
|
||||
HelpText = "When filling bottom and top solid layers always create them so that each new print segment side is touching a previous segment on the same side.".Localize(),
|
||||
DataEditType = DataEditTypes.CHECK_BOX,
|
||||
DefaultValue = "0",
|
||||
DefaultValue = "1",
|
||||
Converter = new MappedToBoolString(),
|
||||
},
|
||||
new SliceSettingData()
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
|
|||
SettingsKey.seam_placement,
|
||||
SettingsKey.expand_thin_walls,
|
||||
SettingsKey.coast_at_end_distance,
|
||||
SettingsKey.montonic_solid_infill,
|
||||
SettingsKey.monotonic_solid_infill,
|
||||
}),
|
||||
("Infill", new[]
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue