We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 351f27a commit fb8de1fCopy full SHA for fb8de1f
1 file changed
src/Device/TCodeDevice.cs
@@ -62,7 +62,7 @@ public TCodeDevice()
62
63
private static void AppendIfChanged(StringBuilder stringBuilder, string axisName, float cmd, float lastCmd)
64
{
65
- if (float.IsNaN(lastCmd) || Mathf.Abs(lastCmd - cmd) * 999 >= 1)
+ if (float.IsNaN(lastCmd) || Mathf.Abs(lastCmd - cmd) * 9999 >= 1)
66
stringBuilder.AppendTCode(axisName, cmd).Append(" ");
67
}
68
0 commit comments