Good morning, after defining the points to be reached, I would like to be able to move the robot on the symmetrical points with respect to the workobject, is it possible to do this without having to redefine the point?
Is there a function that can be exploited in RAPID or a way to manipulate the point definition by inverting the X coordinate and its quaternions?
I currently define the point in this way:
CONST robtarget point_10:=[[-207.763598525,357.473524905,126.76885315],[0.08151693,0.695311014,-0.700327133,0.139425577],[-1,1,-2,0],[9E+09,9E+09,9E+09,9E+09,9E+09,9E+09]];
I associate it with an array:
POINTS{1}:=point_10;
And then I move to the point with:
MoveJ RelTool(POINTS{1}, offX, offY, offZ),vmax,z100,tool\WObj:=wobj;
Thank you all for the help!