How can we change the damping coefficient of RevoluteJoint
after calling parser.AddModelFromFile(urdf_file_name)
?
I believe damping_
is the variable that I need to change, but there is not setter for this variable: https://github.com/RobotLocomotion/drake/blob/838160f3813be33eda8ff42f424b1887076bcbdc/multibody/tree/revolute_joint.h#L121
Should I simply add a setter in RevoluteJoint
and make a pull request?
To give more background, I want to vary joint damping coefficients for domain randomization (agents are multithreaded), so changing the urdf file wouldn't work in my case.
Thanks!