Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fenrus75 committed Feb 10, 2020
1 parent ace61e2 commit 3688a5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions toolpath/triangle.c
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ static void do_outlines(double distance)
*/

if (fabs(v2Y) > 0.01 || fabs(v2X < 0.0001)) {
if (fabs(v2Y) > 0.01 || fabs(v2X) < 0.0001) {
double left, right;
left = vX - vY/v2Y * v2X;
right = m2X + v2X * mY / v2Y - m2Y * v2X/v2Y - mX;
Expand Down Expand Up @@ -735,7 +735,7 @@ static void do_outlines(double distance)
*/

if (fabs(v2Y) > 0.11 || fabs(v2X < 0.0001)) {
if (fabs(v2Y) > 0.11 || fabs(v2X) < 0.0001) {
double left, right;
left = vX - vY/v2Y * v2X;
right = m2X + v2X * mY / v2Y - m2Y * v2X/v2Y - mX;
Expand Down

0 comments on commit 3688a5f

Please sign in to comment.