10-30-2019, 07:14 PM
如果你看看processor called Epson RC you'll see an example to calculate the absolute pose (position of the tool relative to the robot base). For every new movement (MoveL and MoveC) you should calculate the absolute position like this:
You should make sure you keep a copy of the reference coordinate system (inside setFrame).
Code:
pose_abs = self.FRAME * pose
You should make sure you keep a copy of the reference coordinate system (inside setFrame).