* Bug fixes for Issues #16073 and #16052 * Fix tool rendering when tool position is not reset. Issue #16180 * Fix some lint warnings
This commit is contained in:
@@ -49,7 +49,7 @@ bool IsArcMotion(MillMotion* m)
|
||||
if (m->cmd != eRotateCCW && m->cmd != eRotateCW) {
|
||||
return false;
|
||||
}
|
||||
return fabs(m->i > EPSILON) || fabs(m->j) > EPSILON;
|
||||
return fabs(m->i) > EPSILON || fabs(m->j) > EPSILON;
|
||||
}
|
||||
|
||||
float MillPathSegment::mResolution = 1;
|
||||
|
||||
Reference in New Issue
Block a user