Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
starseeker committed Oct 19, 2024
1 parent 7ffb940 commit c44e456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/boolean_complex_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1110,7 +1110,7 @@ TEST(BooleanComplex, SimpleOffset) {
// Extrude the points above and below the plane of the triangle
vec3 pnts[6];
for (int j = 0; j < 3; j++) pnts[j] = ev[j] + n;
for (int j = 3; j < 6; j++) pnts[j] = ev[j-3] - n;
for (int j = 3; j < 6; j++) pnts[j] = ev[j - 3] - n;
// Construct the points and faces of the new manifold
double pts[3 * 6] = {pnts[4].x, pnts[4].y, pnts[4].z, pnts[3].x, pnts[3].y,
pnts[3].z, pnts[0].x, pnts[0].y, pnts[0].z, pnts[1].x,
Expand Down

0 comments on commit c44e456

Please sign in to comment.