#include <frame.h>
Collaboration diagram for RigidTransform:

Public Member Functions | |
| RigidTransform (const UniversalCoord &uc, const Quatf &q) | |
| RigidTransform (const UniversalCoord &uc, const Quatd &q) | |
| RigidTransform (const UniversalCoord &uc) | |
| RigidTransform () | |
Public Attributes | |
| Quatd | rotation |
| UniversalCoord | translation |
|
|
Definition at line 21 of file frame.h. References rotation, and translation. 00021 : 00022 translation(0.0, 0.0, 0.0), rotation(1.0, 0.0, 0.0, 0.0) {}; RigidTransform(const UniversalCoord& uc) :
|
|
|
Definition at line 23 of file frame.h. References rotation, and translation. 00023 : 00024 translation(uc), rotation(1.0f) {}; RigidTransform(const UniversalCoord& uc, const Quatd& q) :
|
|
||||||||||||
|
Definition at line 25 of file frame.h. References rotation, and translation. 00025 : 00026 translation(uc), rotation(q) {}; RigidTransform(const UniversalCoord& uc, const Quatf& q) :
|
|
||||||||||||
|
Definition at line 27 of file frame.h. 00027 : 00028 translation(uc), rotation(q.w, q.x, q.y, q.z) {}; UniversalCoord translation;
|
|
|
1.4.1