robotics-toolbox-python icon indicating copy to clipboard operation
robotics-toolbox-python copied to clipboard

Incorrect implementation of the ikine_6s method for the Puma 560

Open Nikolay-Zagrebin opened this issue 8 months ago • 0 comments

When calculating with the tool, the inverse matrix of the tool is subtracted as if it were a base, it should be the other way around.

def ikine_6s(self, T, config, ikfunc): .... if tool is not None: T = tool.inv() * T

Must be T = T * tool.inv()

Nikolay-Zagrebin avatar Apr 16 '25 12:04 Nikolay-Zagrebin