Call to create plane feature from URCap

In order to call the “Move” tab the following code can be used:

public void selectCenterPoint() {
UserInterfaceAPI uiapi = apiProvider.getUserInterfaceAPI();
uiapi.getUserInteraction().getUserDefinedRobotPosition(new RobotPositionCallback() {
@Override
public void onOk(Pose pose, JointPositions jointPositions) {

		}
	});
}

However, do you have a callback function to the “Plane” tab?

1 Like