\brief Getter for the `g` term (i.e. the free velocity of constraints + corrective terms).
| 425 | |
| 426 | /// \brief Getter for the `g` term (i.e. the free velocity of constraints + corrective terms). |
| 427 | Eigen::VectorBlock<VectorXs> g() |
| 428 | { |
| 429 | return this->m_g.head(this->constraints_problem_size()); |
| 430 | } |
| 431 | |
| 432 | /// \brief const getter for the `g` term (i.e. the free velocity of constraint + corrective terms). |
| 433 | Eigen::VectorBlock<const VectorXs> g() const |