mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-15 02:37:51 -06:00
Changed the default "sane" extrusion width parameters to
1x nozzle_dmr for support and top infill, and 1.125x nozzle_dmr for the rest. This corresponds roughly to the default values tuned for the Prusa MK2 for normal prints.
This commit is contained in:
parent
2f2c0ddc99
commit
ac672d9dc5
2 changed files with 13 additions and 16 deletions
|
@ -46,12 +46,12 @@ PerimeterGenerator::process()
|
|||
// in the current layer
|
||||
double nozzle_diameter = this->print_config->nozzle_diameter.get_at(this->config->perimeter_extruder-1);
|
||||
|
||||
this->_lower_slices_p = offset(*this->lower_slices, scale_(+nozzle_diameter/2));
|
||||
this->_lower_slices_p = offset(*this->lower_slices, float(scale_(+nozzle_diameter/2)));
|
||||
}
|
||||
|
||||
// we need to process each island separately because we might have different
|
||||
// extra perimeters for each one
|
||||
for (Surface &surface : this->slices->surfaces) {
|
||||
for (const Surface &surface : this->slices->surfaces) {
|
||||
// detect how many perimeters must be generated for this island
|
||||
const int loop_number = this->config->perimeters + surface.extra_perimeters -1; // 0-indexed loops
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue