Skip to content

Commit

Permalink
Applied clang-format.
Browse files Browse the repository at this point in the history
  • Loading branch information
jellespijker authored and github-actions[bot] committed May 2, 2024
1 parent b8a4b17 commit b05d0fd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
3 changes: 1 addition & 2 deletions include/plugins/converters.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,7 @@ struct infill_generate_request : public details::converter<infill_generate_reque
};

struct infill_generate_response
: public details::
converter<infill_generate_response, slots::infill::v0::generate::CallResponse, std::tuple<std::vector<std::vector<ExtrusionLine>>, Shape, OpenLinesSet>>
: public details::converter<infill_generate_response, slots::infill::v0::generate::CallResponse, std::tuple<std::vector<std::vector<ExtrusionLine>>, Shape, OpenLinesSet>>
{
native_value_type operator()(const value_type& message) const;
};
Expand Down
7 changes: 4 additions & 3 deletions src/TreeSupport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2023,9 +2023,10 @@ void TreeSupport::filterFloatingLines(std::vector<Shape>& support_layer_storage)
return;
}

Shape outer_walls
= TreeSupportUtils::toPolylines(support_layer_storage[layer_idx - 1].getOutsidePolygons())
.createTubeShape(closing_dist, 0); //.unionPolygons(volumes_.getCollision(0, layer_idx - 1, true).offset(-(config.support_line_width+config.xy_min_distance)));
Shape outer_walls = TreeSupportUtils::toPolylines(support_layer_storage[layer_idx - 1].getOutsidePolygons())
.createTubeShape(
closing_dist,
0); //.unionPolygons(volumes_.getCollision(0, layer_idx - 1, true).offset(-(config.support_line_width+config.xy_min_distance)));

Shape holes_below;

Expand Down

0 comments on commit b05d0fd

Please sign in to comment.