|
MOAB
4.9.3pre
|
#include <Transform.h>
Static Public Member Functions | |
| template<typename MatrixType > | |
| static void | run (MatrixType &mat) |
Definition at line 1123 of file Transform.h.
| static void Eigen::internal::transform_make_affine< Mode >::run | ( | MatrixType & | mat | ) | [inline, static] |
Definition at line 1126 of file Transform.h.
{
static const int Dim = MatrixType::ColsAtCompileTime-1;
mat.template block<1,Dim>(Dim,0).setZero();
mat.coeffRef(Dim,Dim) = typename MatrixType::Scalar(1);
}