Skip to content

Commit

Permalink
Testing 1, 2, 3
Browse files Browse the repository at this point in the history
Contributes to CURA-10732
  • Loading branch information
jellespijker committed Jul 12, 2023
1 parent d7016a4 commit 0e63fd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/infill.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -539,14 +539,14 @@ void Infill::generateLineInfill(Polygons& result, int line_distance, const doubl
shift += getShiftOffsetFromInfillOriginAndRotation(infill_rotation);
PointMatrix rotation_matrix(infill_rotation);
NoZigZagConnectorProcessor lines_processor(rotation_matrix, result);
bool connected_zigzags = false;
bool connected_zigzags = false; // it should trigger on this
generateLinearBasedInfill(result, line_distance, rotation_matrix, lines_processor, connected_zigzags, shift);
}


void Infill::generateZigZagInfill(Polygons& result, const coord_t line_distance, const double& infill_rotation)
{
const coord_t shift = getShiftOffsetFromInfillOriginAndRotation(infill_rotation);
const coord_t shift = getShiftOffsetFromInfillOriginAndRotation(infill_rotation); // and here

PointMatrix rotation_matrix(infill_rotation);
ZigzagConnectorProcessor zigzag_processor(rotation_matrix, result, use_endpieces, connected_zigzags, skip_some_zags, zag_skip_count);
Expand Down

0 comments on commit 0e63fd7

Please sign in to comment.