Closed RussTedrake closed 1 year ago
I'll let @jwnimmer-tri be the task gatekeeper, but this sounds like something that @trowell-tri might be interested in.
See also #19153.
We'd probably want this to be pydrake.visualization.PoseSliders
even though JointSliders
is somewhere else for now.
Earlier this year, @jwnimmer-tri ported the python meshcat JointSliders from my course repos into Drake in order to support the multibody tutorial. I also have a meshcat PoseSliders class which is almost identical (but outputs a
RigidTransform
instead of aVectorXd
of joint positions).We already have one version of this implemented in
//examples/manipulation_station:end_effector_teleop.py
. But it deserves to be a first-class citizen, alongsideJointSliders
. In the initial PR, it would simply replace theManipulationStation
implementation, but down the line it would be useful to have a differential IK tutorial, like the "intro" notebook from my manipulation notes.