dart
|
Default implementation of IkSolutionBase. More...
#include <ikfast.h>
Public Member Functions | |
IkSolution (const std::vector< IkSingleDOFSolutionBase< T > > &vinfos, const std::vector< int > &vfree) | |
virtual void | GetSolution (T *solution, const T *freevalues) const |
gets a concrete solution More... | |
virtual void | GetSolution (std::vector< T > &solution, const std::vector< T > &freevalues) const |
std::vector version of GetSolution | |
virtual const std::vector< int > & | GetFree () const |
Gets the indices of the configuration space that have to be preset before a full solution can be returned. More... | |
virtual int | GetDOF () const |
the dof of the solution | |
virtual void | Validate () const |
virtual void | GetSolutionIndices (std::vector< unsigned int > &v) const |
Public Attributes | |
std::vector< IkSingleDOFSolutionBase< T > > | _vbasesol |
solution and their offsets if joints are mimiced | |
std::vector< int > | _vfree |
Default implementation of IkSolutionBase.
|
inlinevirtual |
Gets the indices of the configuration space that have to be preset before a full solution can be returned.
0 always points to the first value accepted by the ik function.
Implements ikfast::IkSolutionBase< T >.
|
inlinevirtual |
gets a concrete solution
[out] | solution | the result |
[in] | freevalues | values for the free parameters GetFree |
Implements ikfast::IkSolutionBase< T >.