summaryrefslogtreecommitdiff
path: root/examples/RoboticsLearning
diff options
context:
space:
mode:
authoryunfeibai <byf1658@gmail.com>2016-09-30 00:43:15 -0700
committeryunfeibai <byf1658@gmail.com>2016-09-30 00:43:15 -0700
commit1c1d3db26dadbb92c4885b77195593bcb6f82937 (patch)
tree8d44ee42fe1a59cd7bc582562e28c0af5076e191 /examples/RoboticsLearning
parentee00696ae9bc13a6910cd0bffaeb35ff84acbc81 (diff)
downloadbullet3-1c1d3db26dadbb92c4885b77195593bcb6f82937.tar.gz
An example to compare with and without null space task in IK.
Diffstat (limited to 'examples/RoboticsLearning')
-rw-r--r--examples/RoboticsLearning/KukaGraspExample.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/RoboticsLearning/KukaGraspExample.cpp b/examples/RoboticsLearning/KukaGraspExample.cpp
index e3c71c738..998e045db 100644
--- a/examples/RoboticsLearning/KukaGraspExample.cpp
+++ b/examples/RoboticsLearning/KukaGraspExample.cpp
@@ -195,7 +195,7 @@ public:
ikargs.m_endEffectorTargetPosition[1] = targetPosDataOut.m_floats[1];
ikargs.m_endEffectorTargetPosition[2] = targetPosDataOut.m_floats[2];
- ikargs.m_flags |= B3_HAS_IK_TARGET_ORIENTATION + B3_HAS_NULL_SPACE_VELOCITY;
+ ikargs.m_flags |= /*B3_HAS_IK_TARGET_ORIENTATION +*/ B3_HAS_NULL_SPACE_VELOCITY;
ikargs.m_endEffectorTargetOrientation[0] = targetOriDataOut.m_floats[0];
ikargs.m_endEffectorTargetOrientation[1] = targetOriDataOut.m_floats[1];
@@ -233,10 +233,10 @@ public:
{
b3JointMotorArgs t(CONTROL_MODE_POSITION_VELOCITY_PD);
t.m_targetPosition = ikresults.m_calculatedJointPositions[i];
- t.m_maxTorqueValue = 100;
- t.m_kp= 1;
+ t.m_maxTorqueValue = 100.0;
+ t.m_kp= 1.0;
t.m_targetVelocity = 0;
- t.m_kp = 0.5;
+ t.m_kd = 1.0;
m_robotSim.setJointMotorControl(m_kukaIndex,i,t);
}