Skip to content
Snippets Groups Projects
Commit 370ac250 authored by armar-user's avatar armar-user
Browse files

Fixed wrong vector type of knull and dnull

parent 1a711741
No related branches found
No related tags found
No related merge requests found
...@@ -283,8 +283,8 @@ namespace armarx ...@@ -283,8 +283,8 @@ namespace armarx
Eigen::Vector3f dpos = ctrlParams.getUpToDateReadBuffer().dpos; Eigen::Vector3f dpos = ctrlParams.getUpToDateReadBuffer().dpos;
Eigen::Vector3f kori = ctrlParams.getUpToDateReadBuffer().kori; Eigen::Vector3f kori = ctrlParams.getUpToDateReadBuffer().kori;
Eigen::Vector3f dori = ctrlParams.getUpToDateReadBuffer().dori; Eigen::Vector3f dori = ctrlParams.getUpToDateReadBuffer().dori;
Eigen::Vector3f knull = ctrlParams.getUpToDateReadBuffer().knull; Eigen::VectorXf knull = ctrlParams.getUpToDateReadBuffer().knull;
Eigen::Vector3f dnull = ctrlParams.getUpToDateReadBuffer().dnull; Eigen::VectorXf dnull = ctrlParams.getUpToDateReadBuffer().dnull;
Eigen::Vector6f jointControlWrench; Eigen::Vector6f jointControlWrench;
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment