|
MOAB
4.9.3pre
|
#include <OrthoMethods.h>
Static Public Member Functions | |
| static internal::plain_matrix_type < VectorLhs >::type | run (const VectorLhs &lhs, const VectorRhs &rhs) |
Definition at line 55 of file OrthoMethods.h.
| static internal::plain_matrix_type<VectorLhs>::type Eigen::internal::cross3_impl< Arch, VectorLhs, VectorRhs, Scalar, Vectorizable >::run | ( | const VectorLhs & | lhs, |
| const VectorRhs & | rhs | ||
| ) | [inline, static] |
Definition at line 57 of file OrthoMethods.h.
{
return typename internal::plain_matrix_type<VectorLhs>::type(
numext::conj(lhs.coeff(1) * rhs.coeff(2) - lhs.coeff(2) * rhs.coeff(1)),
numext::conj(lhs.coeff(2) * rhs.coeff(0) - lhs.coeff(0) * rhs.coeff(2)),
numext::conj(lhs.coeff(0) * rhs.coeff(1) - lhs.coeff(1) * rhs.coeff(0)),
0
);
}