We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a78e424 commit 2e10c5eCopy full SHA for 2e10c5e
1 file changed
src/emc/tp/tc.c
@@ -349,6 +349,10 @@ int tcGetCurrentTangentUnitVector(TC_STRUCT const * const tc, PmCartesian * cons
349
pmCircleTangentVector(&tc->coords.circle.xyz, current_angle, out);
350
}
351
break;
352
+ case TC_SPHERICAL:
353
+ // Spherical arcs used for blending - tangent calculation at arbitrary
354
+ // progress not yet implemented, direction will be zeroed in caller
355
+ return -1;
356
default:
357
rtapi_print_msg(RTAPI_MSG_ERR, "Invalid motion type %d!\n", tc->motion_type);
358
return -1;
0 commit comments