Go to the documentation of this file.
39 #ifndef IKFAST_HEADER_COMMON
40 #define IKFAST_HEADER_COMMON
43 #define IKFAST_VERSION 61
80 virtual void GetSolution(T* solution,
const T* freevalues)
const = 0;
83 virtual void GetSolution(std::vector<T>& solution,
const std::vector<T>& freevalues)
const
86 GetSolution(&solution.at(0), freevalues.size() > 0 ? &freevalues.at(0) : NULL);
92 virtual const std::vector<int>&
GetFree()
const = 0;
95 virtual int GetDOF()
const = 0;
122 virtual void Clear() = 0;
126 template <
typename T>
151 typedef int* (*GetFreeParametersFn)();
157 typedef const char* (*GetIkFastVersionFn)();
161 typedef const char* (*GetKinematicsHashFn)();
168 template <
typename T>
180 for (std::size_t i = 0; i <
_vbasesol.size(); ++i)
187 if (solution[i] > T(3.14159265358979))
189 solution[i] -= T(6.28318530717959);
191 else if (solution[i] < T(-3.14159265358979))
193 solution[i] += T(6.28318530717959);
199 virtual void GetSolution(std::vector<T>& solution,
const std::vector<T>& freevalues)
const
201 solution.resize(
GetDOF());
202 GetSolution(&solution.at(0), freevalues.size() > 0 ? &freevalues.at(0) : NULL);
205 virtual const std::vector<int>&
GetFree()
const
211 return static_cast<int>(
_vbasesol.size());
216 for (
size_t i = 0; i <
_vbasesol.size(); ++i)
218 if (
_vbasesol[i].maxsolutions == (
unsigned char)-1)
220 throw std::runtime_error(
"max solutions for joint not initialized");
226 throw std::runtime_error(
"index >= max solutions for joint");
230 throw std::runtime_error(
"2nd index >= max solutions for joint");
240 for (
int i = (
int)
_vbasesol.size() - 1; i >= 0; --i)
244 for (
size_t j = 0; j < v.size(); ++j)
248 size_t orgsize = v.size();
249 if (
_vbasesol[i].indices[1] != (
unsigned char)-1)
251 for (
size_t j = 0; j < orgsize; ++j)
253 v.push_back(v[j] +
_vbasesol[i].indices[1]);
256 if (
_vbasesol[i].indices[0] != (
unsigned char)-1)
258 for (
size_t j = 0; j < orgsize; ++j)
272 template <
typename T>
287 throw std::runtime_error(
"GetSolution index is invalid");
289 typename std::list<IkSolution<T> >::const_iterator it =
_listsolutions.begin();
290 std::advance(it,
index);
309 #endif // OPENRAVE_IKFAST_HEADER
312 #ifdef IKFAST_HAS_LIBRARY
315 #ifdef IKFAST_CLIBRARY
317 #define IKFAST_API extern "C" __declspec(dllexport)
319 #define IKFAST_API extern "C"
325 #ifdef IKFAST_NAMESPACE
326 namespace IKFAST_NAMESPACE
331 typedef IKFAST_REAL IkReal;
333 typedef double IkReal;
347 IKFAST_API
bool ComputeIk(
const IkReal* eetrans,
const IkReal* eerot,
const IkReal* pfree,
351 IKFAST_API
void ComputeFk(
const IkReal* joints, IkReal* eetrans, IkReal* eerot);
354 IKFAST_API
int GetNumFreeParameters();
357 IKFAST_API
int* GetFreeParameters();
360 IKFAST_API
int GetNumJoints();
363 IKFAST_API
int GetIkRealSize();
366 IKFAST_API
const char* GetIkFastVersion();
369 IKFAST_API
int GetIkType();
372 IKFAST_API
const char* GetKinematicsHash();
374 #ifdef IKFAST_NAMESPACE
378 #endif // IKFAST_HAS_LIBRARY
unsigned char jointtype
joint type, 0x01 is revolute, 0x11 is slider
Default implementation of IkSolutionListBase.
virtual const IkSolutionBase< T > & GetSolution(size_t index) const =0
returns the solution pointer
GetIkFastVersionFn _GetIkFastVersion
IkSingleDOFSolutionBase()
void(* ComputeFkFn)(const T *, T *, T *)
GetFreeParametersFn _GetFreeParameters
virtual size_t GetNumSolutions() const
returns the number of solutions stored
std::vector< int > _vfree
virtual void GetSolutionIndices(std::vector< unsigned int > &v) const
virtual void GetSolution(T *solution, const T *freevalues) const =0
gets a concrete solution
T foffset
joint value is fmul*sol[freeind]+foffset
unsigned char maxsolutions
max possible indices, 0 if controlled by free index or a free joint itself
manages all the solutions
virtual size_t AddSolution(const std::vector< IkSingleDOFSolutionBase< T > > &vinfos, const std::vector< int > &vfree)
add one solution and return its index for later retrieval
GetKinematicsHashFn _GetKinematicsHash
virtual size_t GetNumSolutions() const =0
returns the number of solutions stored
int(* GetNumFreeParametersFn)()
holds the solution for a single dof
holds function pointers for all the exported functions of ikfast
GetNumFreeParametersFn _GetNumFreeParameters
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 retu...
virtual ~IkSolutionBase()
virtual size_t AddSolution(const std::vector< IkSingleDOFSolutionBase< T > > &vinfos, const std::vector< int > &vfree)=0
add one solution and return its index for later retrieval
virtual void Validate() const
virtual const IkSolutionBase< T > & GetSolution(size_t index) const
returns the solution pointer
virtual int GetDOF() const =0
the dof of the solution
virtual int GetDOF() const
the dof of the solution
virtual void GetSolution(T *solution, const T *freevalues) const
gets a concrete solution
const typedef char *(* GetIkFastVersionFn)()
GetNumJointsFn _GetNumJoints
The discrete solutions are returned in this structure.
virtual ~IkSolutionListBase()
std::list< IkSolution< T > > _listsolutions
virtual void Clear()=0
clears all current solutions, note that any memory addresses returned from GetSolution will be invali...
GetIkRealSizeFn _GetIkRealSize
virtual ~IkFastFunctions()
const typedef char *(* GetKinematicsHashFn)()
virtual const std::vector< int > & GetFree() const =0
Gets the indices of the configuration space that have to be preset before a full solution can be retu...
virtual void GetSolution(std::vector< T > &solution, const std::vector< T > &freevalues) const
std::vector version of GetSolution
std::vector< IkSingleDOFSolutionBase< T > > _vbasesol
solution and their offsets if joints are mimiced
IkSolution(const std::vector< IkSingleDOFSolutionBase< T > > &vinfos, const std::vector< int > &vfree)
signed char freeind
if >= 0, mimics another joint
Default implementation of IkSolutionBase.
bool(* ComputeIkFn)(const T *, const T *, const T *, IkSolutionListBase< T > &)
int *(* GetFreeParametersFn)()
virtual void GetSolution(std::vector< T > &solution, const std::vector< T > &freevalues) const
std::vector version of GetSolution
virtual void Clear()
clears all current solutions, note that any memory addresses returned from GetSolution will be invali...
moveit_kinematics
Author(s): Dave Coleman
, Ioan Sucan , Sachin Chitta
autogenerated on Thu Nov 21 2024 03:24:29