Skip to content

Commit

Permalink
Merge branch '5.8' of github.com:Ultimaker/CuraEngine
Browse files Browse the repository at this point in the history
  • Loading branch information
nallath committed Aug 1, 2024
2 parents 01b3e09 + b79d52e commit bb637bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/FffGcodeWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2309,7 +2309,7 @@ bool FffGcodeWriter::processSingleLayerInfill(
extruder_nr,
z_seam_config,
tool_paths,
storage.getModelBoundingBox().flatten().getMiddle());
mesh.bounding_box.flatten().getMiddle());
added_something |= wall_orderer.addToLayer();
}
}
Expand Down Expand Up @@ -2752,7 +2752,7 @@ bool FffGcodeWriter::processInsets(
mesh.settings.get<ExtruderTrain&>("wall_x_extruder_nr").extruder_nr_,
z_seam_config,
part.wall_toolpaths,
storage.getModelBoundingBox().flatten().getMiddle());
mesh.bounding_box.flatten().getMiddle());
added_something |= wall_orderer.addToLayer();
}
return added_something;
Expand Down Expand Up @@ -3178,7 +3178,7 @@ void FffGcodeWriter::processSkinPrintFeature(
skin_extruder_nr,
z_seam_config,
skin_paths,
storage.getModelBoundingBox().flatten().getMiddle());
mesh.bounding_box.flatten().getMiddle());
added_something |= wall_orderer.addToLayer();
}
}
Expand Down

1 comment on commit bb637bb

@rburema
Copy link
Member

@rburema rburema commented on bb637bb Aug 1, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'C++ Benchmark'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.50.

Benchmark suite Current: bb637bb Previous: b1adb55 Ratio
SimplifyTestFixture/simplify_slot_noplugin 4.022410716734758 ns/iter 1.2382654193903015 ns/iter 3.25

This comment was automatically generated by workflow using github-action-benchmark.

CC: @nallath @jellespijker @wawanbreton @casperlamboo @saumyaj3 @HellAholic

Please sign in to comment.