mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-15 02:37:51 -06:00
New feature: Bridging angle override through a bridge_angle config
variable. When set to zero, the usual automatic bridge detection applies. The bridging angle override may be set at the Infill->Advanced settings, or through a modifier mesh.
This commit is contained in:
parent
75c72bc59b
commit
71f99423c5
7 changed files with 27 additions and 13 deletions
|
@ -65,6 +65,15 @@ PrintConfigDef::PrintConfigDef()
|
|||
def->min = 0;
|
||||
def->default_value = new ConfigOptionFloat(0);
|
||||
|
||||
def = this->add("bridge_angle", coFloat);
|
||||
def->label = "Bridging angle";
|
||||
def->category = "Infill";
|
||||
def->tooltip = "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for all bridges, use 180° for zero angle.";
|
||||
def->sidetext = "°";
|
||||
def->cli = "bridge-angle=f";
|
||||
def->min = 0;
|
||||
def->default_value = new ConfigOptionFloat(0.);
|
||||
|
||||
def = this->add("bridge_fan_speed", coInts);
|
||||
def->label = "Bridges fan speed";
|
||||
def->tooltip = "This fan speed is enforced during all bridges and overhangs.";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue