Benoît LdL

Benoit-LdL ·

krishauser/Klampt

Extra constraints in motion planner

howto support

IK is your best bet. If you want to keep the end effector position constant between the start and end, you can do it as follows

from klampt import ik
from klampt.math import vectorops

tool_center_point = [0,0,0]  #whatever you want here
local_axis = [1...
krishauser/Klampt

Motion planning: RuntimeError: Start Configuration is infeasible

bug

Ah, the planning_test.py has a bunch of flags at the top of the file to test more complex version of the motion planning functions, and these were set to 1 in the committed version. They should be set to 0. If you git pull, the most recent planning_tes...