Skip to content
Snippets Groups Projects
Commit cab73271 authored by Pierre-Alexandre Leziart's avatar Pierre-Alexandre Leziart
Browse files

Small fix after merging

parent a0756559
No related branches found
No related tags found
No related merge requests found
...@@ -46,11 +46,13 @@ void StatePlanner::computeReferenceStates(VectorN const& q, Vector6 const& v, Ve ...@@ -46,11 +46,13 @@ void StatePlanner::computeReferenceStates(VectorN const& q, Vector6 const& v, Ve
referenceStates_(2, 1 + i) = h_ref_ + z_average; referenceStates_(2, 1 + i) = h_ref_ + z_average;
referenceStates_(5, 1 + i) = vref(5) * dt_vector_(i) + RPY_(2); referenceStates_(5, 1 + i) = vref(5) * dt_vector_(i);
referenceStates_(6, 1 + i) = vref(0) * std::cos(referenceStates_(5, 1 + i)) - vref(1) * std::sin(referenceStates_(5, 1 + i)); referenceStates_(6, 1 + i) = vref(0) * std::cos(referenceStates_(5, 1 + i)) - vref(1) * std::sin(referenceStates_(5, 1 + i));
referenceStates_(7, 1 + i) = vref(0) * std::sin(referenceStates_(5, 1 + i)) + vref(1) * std::cos(referenceStates_(5, 1 + i)); referenceStates_(7, 1 + i) = vref(0) * std::sin(referenceStates_(5, 1 + i)) + vref(1) * std::cos(referenceStates_(5, 1 + i));
referenceStates_(5, 1 + i) += RPY_(2);
referenceStates_(11, 1 + i) = vref(5); referenceStates_(11, 1 + i) = vref(5);
} }
} }
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