mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-05 15:40:45 +08:00
Removed the bridge material amount setting, this did not only affect bridges, but the whole layer the bridge is in, so it did not work properly.
This commit is contained in:
parent
e9a28830b1
commit
6a0addd9de
@ -90,9 +90,6 @@ def calcLayerSkip(setting):
|
||||
return 0
|
||||
return int(math.ceil((bottomThickness - layerThickness) / layerThickness + 0.0001) - 1)
|
||||
|
||||
def calculateBridgeFlow(setting):
|
||||
return (profile.getProfileSettingFloat('bridge_speed') / 100) * (profile.getProfileSettingFloat('bridge_material_amount') / 100)
|
||||
|
||||
def getProfileInformation():
|
||||
return {
|
||||
'carve': {
|
||||
@ -185,7 +182,7 @@ def getProfileInformation():
|
||||
'Activate_Speed': "True",
|
||||
'Add_Flow_Rate': "True",
|
||||
'Bridge_Feed_Rate_Multiplier_ratio': storedPercentSetting('bridge_speed'),
|
||||
'Bridge_Flow_Rate_Multiplier_ratio': calculateBridgeFlow,
|
||||
'Bridge_Flow_Rate_Multiplier_ratio': storedPercentSetting('bridge_speed'),
|
||||
'Duty_Cyle_at_Beginning_portion': DEFSET,
|
||||
'Duty_Cyle_at_Ending_portion': DEFSET,
|
||||
'Feed_Rate_mm/s': storedSettingFloat("print_speed"),
|
||||
|
@ -52,9 +52,7 @@ class expertConfigWindow(configBase.configWindowBase):
|
||||
validators.validFloat(c, 0.0)
|
||||
|
||||
configBase.TitleRow(right, "Bridge")
|
||||
c = configBase.SettingRow(right, "Bridge speed (%)", 'bridge_speed', '100', 'Speed at which bridges are printed, compared to normal printing speed.')
|
||||
validators.validFloat(c, 0.0)
|
||||
c = configBase.SettingRow(right, "Bridge material (%)", 'bridge_material_amount', '100', 'Amount of material used for bridges, increase go extrude more material when printing a bridge.')
|
||||
c = configBase.SettingRow(right, "Bridge speed (%)", 'bridge_speed', '100', 'Speed at which layers with bridges are printed, compared to normal printing speed.')
|
||||
validators.validFloat(c, 0.0)
|
||||
|
||||
configBase.TitleRow(right, "Sequence")
|
||||
|
@ -212,7 +212,6 @@ class simpleModeWindow(configBase.configWindowBase):
|
||||
put('joris', 'False')
|
||||
put('cool_min_feedrate', '5')
|
||||
put('bridge_speed', '100')
|
||||
put('bridge_material_amount', '100')
|
||||
put('raft_margin', '5')
|
||||
put('raft_base_material_amount', '100')
|
||||
put('raft_interface_material_amount', '100')
|
||||
|
@ -58,7 +58,6 @@ profileDefaultSettings = {
|
||||
'enable_raft': 'False',
|
||||
'cool_min_feedrate': '5',
|
||||
'bridge_speed': '100',
|
||||
'bridge_material_amount': '100',
|
||||
'raft_margin': '5',
|
||||
'raft_base_material_amount': '100',
|
||||
'raft_interface_material_amount': '100',
|
||||
|
Loading…
x
Reference in New Issue
Block a user