APIs, concepts, guides, and more
|
|
static |
controller | Pointer to the MotionController to set up. |
axisCount | Number of axes to configure as phantom. |
axisNums | Vector of integers specifying the axis numbers to configure as phantom. public static void SetupControllerForPhantoms(MotionController controller, int axisCount, int[] axisNums)
{
ShutdownTheNetwork(controller);
ClearControllerCounts(controller);
controller.AxisCountSet(axisCount);
foreach (int axisNum in axisNums)
{
ConfigurePhantomAxis(controller, axisNum);
}
}
|
Definition at line 168 of file HelperFunctionsCS.cs.