43 #include <visp3/core/vpRxyzVector.h>
95 double COEF_MIN_ROT = 1e-6;
98 if ((fabs(R[1][2]) < COEF_MIN_ROT) && (fabs(R[2][2]) < COEF_MIN_ROT))
101 phi = atan2(-R[1][2], R[2][2]);
103 double si = sin(phi);
104 double co = cos(phi);
105 double theta = atan2(R[0][2], -si * R[1][2] + co * R[2][2]);
106 double psi = atan2(co * R[1][0] + si * R[2][0], co * R[1][1] + si * R[2][1]);
146 if (rxyz.
size() != 3) {
150 for (
unsigned int i = 0; i < 3; i++)
161 if (rxyz.size() != 3) {
165 for (
unsigned int i = 0; i < 3; i++)
192 for (
unsigned int i = 0; i <
dsize; i++)
223 if (rxyz.
size() != 3) {
227 for (
unsigned int i = 0; i < 3; i++)
233 #if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
253 if (list.size() >
size()) {
256 "Cannot set Euler x-y-z vector out of bounds. It has only %d values while you try to initialize with %d values",
257 size(), list.size()));
259 std::copy(list.begin(), list.end(),
data);
double * data
Address of the first element of the data array.
unsigned int dsize
Current array size (rowNum * colNum)
unsigned int size() const
Return the number of elements of the 2D array.
Implementation of column vector and the associated operations.
error that can be emited by ViSP classes.
@ dimensionError
Bad dimension.
Implementation of a rotation matrix and operations on such kind of matrices.
vpRotationMatrix buildFrom(const vpHomogeneousMatrix &M)
Implementation of a generic rotation vector.
Implementation of a rotation vector as Euler angle minimal representation.
vpRxyzVector buildFrom(const vpRotationMatrix &R)
vpRxyzVector & operator=(const vpColVector &rxyz)
Implementation of a rotation vector as axis-angle minimal representation.