Classes | |
struct | CheckValue |
class | IKFastKinematicsPlugin |
class | IKSolver |
Functions | |
IKFAST_API void | ComputeFk (const IkReal *j, IkReal *eetrans, IkReal *eerot) |
IKFAST_API bool | ComputeIk (const IkReal *eetrans, const IkReal *eerot, const IkReal *pfree, IkSolutionListBase< IkReal > &solutions) |
IKFAST_API bool | ComputeIk2 (const IkReal *eetrans, const IkReal *eerot, const IkReal *pfree, IkSolutionListBase< IkReal > &solutions, void *pOpenRAVEManip) |
void | dgeev_ (const char *jobvl, const char *jobvr, const int *n, double *a, const int *lda, double *wr, double *wi, double *vl, const int *ldvl, double *vr, const int *ldvr, double *work, const int *lwork, int *info) |
void | dgesv_ (const int *n, const int *nrhs, double *a, const int *lda, int *ipiv, double *b, const int *ldb, int *info) |
void | dgetrf_ (const int *m, const int *n, double *a, const int *lda, int *ipiv, int *info) |
void | dgetri_ (const int *n, const double *a, const int *lda, int *ipiv, double *work, const int *lwork, int *info) |
void | dgetrs_ (const char *trans, const int *n, const int *nrhs, double *a, const int *lda, int *ipiv, double *b, const int *ldb, int *info) |
IKFAST_API int * | GetFreeParameters () |
IKFAST_API const char * | GetIkFastVersion () |
IKFAST_API int | GetIkRealSize () |
IKFAST_API int | GetIkType () |
IKFAST_API const char * | GetKinematicsHash () |
IKFAST_API int | GetNumFreeParameters () |
IKFAST_API int | GetNumJoints () |
float | IKabs (float f) |
double | IKabs (double f) |
float | IKacos (float f) |
double | IKacos (double f) |
float | IKasin (float f) |
double | IKasin (double f) |
float | IKatan2 (float fy, float fx) |
double | IKatan2 (double fy, double fx) |
float | IKatan2Simple (float fy, float fx) |
double | IKatan2Simple (double fy, double fx) |
template<typename T > | |
CheckValue< T > | IKatan2WithCheck (T fy, T fx, T epsilon) |
float | IKcos (float f) |
double | IKcos (double f) |
IKFAST_COMPILE_ASSERT (IKFAST_VERSION==0x10000049) | |
float | IKfmod (float x, float y) |
double | IKfmod (double x, double y) |
float | IKlog (float f) |
double | IKlog (double f) |
template<typename T > | |
CheckValue< T > | IKPowWithIntegerCheck (T f, int n) |
float | IKsign (float f) |
double | IKsign (double f) |
float | IKsin (float f) |
double | IKsin (double f) |
float | IKsqr (float f) |
double | IKsqr (double f) |
float | IKsqrt (float f) |
double | IKsqrt (double f) |
float | IKtan (float f) |
double | IKtan (double f) |
void | zgetrf_ (const int *m, const int *n, std::complex< double > *a, const int *lda, int *ipiv, int *info) |
The types of inverse kinematics parameterizations supported.
The minimum degree of freedoms required is set in the upper 4 bits of each type. The number of values used to represent the parameterization ( >= dof ) is the next 4 bits. The lower bits contain a unique id of the type.
Definition at line 72 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
IKFAST_API void ikfast_kinematics_plugin::ComputeFk | ( | const IkReal * | j, |
IkReal * | eetrans, | ||
IkReal * | eerot | ||
) |
solves the forward kinematics equations.
pfree | is an array specifying the free joints of the chain. |
Definition at line 326 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
IKFAST_API bool ikfast_kinematics_plugin::ComputeIk | ( | const IkReal * | eetrans, |
const IkReal * | eerot, | ||
const IkReal * | pfree, | ||
IkSolutionListBase< IkReal > & | solutions | ||
) |
solves the inverse kinematics equations.
pfree | is an array specifying the free joints of the chain. |
Definition at line 51450 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
IKFAST_API bool ikfast_kinematics_plugin::ComputeIk2 | ( | const IkReal * | eetrans, |
const IkReal * | eerot, | ||
const IkReal * | pfree, | ||
IkSolutionListBase< IkReal > & | solutions, | ||
void * | pOpenRAVEManip | ||
) |
Definition at line 51457 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
void ikfast_kinematics_plugin::dgeev_ | ( | const char * | jobvl, |
const char * | jobvr, | ||
const int * | n, | ||
double * | a, | ||
const int * | lda, | ||
double * | wr, | ||
double * | wi, | ||
double * | vl, | ||
const int * | ldvl, | ||
double * | vr, | ||
const int * | ldvr, | ||
double * | work, | ||
const int * | lwork, | ||
int * | info | ||
) |
void ikfast_kinematics_plugin::dgesv_ | ( | const int * | n, |
const int * | nrhs, | ||
double * | a, | ||
const int * | lda, | ||
int * | ipiv, | ||
double * | b, | ||
const int * | ldb, | ||
int * | info | ||
) |
void ikfast_kinematics_plugin::dgetrf_ | ( | const int * | m, |
const int * | n, | ||
double * | a, | ||
const int * | lda, | ||
int * | ipiv, | ||
int * | info | ||
) |
void ikfast_kinematics_plugin::dgetri_ | ( | const int * | n, |
const double * | a, | ||
const int * | lda, | ||
int * | ipiv, | ||
double * | work, | ||
const int * | lwork, | ||
int * | info | ||
) |
void ikfast_kinematics_plugin::dgetrs_ | ( | const char * | trans, |
const int * | n, | ||
const int * | nrhs, | ||
double * | a, | ||
const int * | lda, | ||
int * | ipiv, | ||
double * | b, | ||
const int * | ldb, | ||
int * | info | ||
) |
IKFAST_API int* ikfast_kinematics_plugin::GetFreeParameters | ( | ) |
Definition at line 407 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
IKFAST_API const char* ikfast_kinematics_plugin::GetIkFastVersion | ( | ) |
Definition at line 51470 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
IKFAST_API int ikfast_kinematics_plugin::GetIkRealSize | ( | ) |
Definition at line 410 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
IKFAST_API int ikfast_kinematics_plugin::GetIkType | ( | ) |
Definition at line 412 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
IKFAST_API const char* ikfast_kinematics_plugin::GetKinematicsHash | ( | ) |
Definition at line 51465 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
IKFAST_API int ikfast_kinematics_plugin::GetNumFreeParameters | ( | ) |
Definition at line 406 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
IKFAST_API int ikfast_kinematics_plugin::GetNumJoints | ( | ) |
Definition at line 408 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 111 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 112 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 182 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 193 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 143 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 154 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 221 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 232 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 220 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 231 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 249 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 206 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 207 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
ikfast_kinematics_plugin::IKFAST_COMPILE_ASSERT | ( | IKFAST_VERSION | = =0x10000049 | ) |
|
inline |
Definition at line 167 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 175 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 117 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 118 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 281 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 263 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 272 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 204 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 205 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 114 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 115 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 210 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 215 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 208 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
|
inline |
Definition at line 209 of file motoman_mh5_manipulator_ikfast_moveit_plugin.cpp.
void ikfast_kinematics_plugin::zgetrf_ | ( | const int * | m, |
const int * | n, | ||
std::complex< double > * | a, | ||
const int * | lda, | ||
int * | ipiv, | ||
int * | info | ||
) |