MOAB  4.9.3pre
Eigen::internal::transform_make_affine< Mode > Struct Template Reference

#include <Transform.h>

List of all members.

Static Public Member Functions

template<typename MatrixType >
static void run (MatrixType &mat)

Detailed Description

template<int Mode>
struct Eigen::internal::transform_make_affine< Mode >

Definition at line 1123 of file Transform.h.


Member Function Documentation

template<int Mode>
template<typename MatrixType >
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);
  }

The documentation for this struct was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines