Skip to main content

NRC_PositionACStoMCS(NRC_Position& posACS, NRC_Position& posMCS)

Convert robot joint coordinates to Cartesian coordinates

Type

int=>Return whether the conversion is successful

Return valueDescription
0Conversion successful
-1Conversion failed

Parameter Option

ParameterTypeDescription
posACSNRC_Position&The joint coordinates to be converted
posMCSNRC_Position&The parameter by which the conversion result is returned

Sample code

NRC_Position posACS={NRC_ACS,10,10,10,10,10,10};
NRC_Position posMCS;
NRC_PositionACStoMCS(posACS, posMCS);//Convert joint point posACS to Cartesian point posMCS