Path Tracer
Transform.h
1 // This file is part of Eigen, a lightweight C++ template library
2 // for linear algebra.
3 //
4 // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr>
5 // Copyright (C) 2009 Benoit Jacob <jacob.benoit.1@gmail.com>
6 // Copyright (C) 2010 Hauke Heibel <hauke.heibel@gmail.com>
7 //
8 // This Source Code Form is subject to the terms of the Mozilla
9 // Public License v. 2.0. If a copy of the MPL was not distributed
10 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
11 
12 #ifndef EIGEN_TRANSFORM_H
13 #define EIGEN_TRANSFORM_H
14 
15 namespace Eigen {
16 
17 namespace internal {
18 
19 template<typename Transform>
21 {
22  enum
23  {
24  Dim = Transform::Dim,
25  HDim = Transform::HDim,
26  Mode = Transform::Mode,
27  IsProjective = (int(Mode)==int(Projective))
28  };
29 };
30 
31 template< typename TransformType,
32  typename MatrixType,
34  : int(MatrixType::RowsAtCompileTime) == int(transform_traits<TransformType>::HDim) ? 1
35  : 2,
36  int RhsCols = MatrixType::ColsAtCompileTime>
38 
39 template< typename Other,
40  int Mode,
41  int Options,
42  int Dim,
43  int HDim,
44  int OtherRows=Other::RowsAtCompileTime,
45  int OtherCols=Other::ColsAtCompileTime>
47 
48 template< typename Lhs,
49  typename Rhs,
50  bool AnyProjective =
54 
55 template< typename Other,
56  int Mode,
57  int Options,
58  int Dim,
59  int HDim,
60  int OtherRows=Other::RowsAtCompileTime,
61  int OtherCols=Other::ColsAtCompileTime>
63 
64 template<typename TransformType> struct transform_take_affine_part;
65 
66 template<typename _Scalar, int _Dim, int _Mode, int _Options>
67 struct traits<Transform<_Scalar,_Dim,_Mode,_Options> >
68 {
69  typedef _Scalar Scalar;
70  typedef Eigen::Index StorageIndex;
71  typedef Dense StorageKind;
72  enum {
73  Dim1 = _Dim==Dynamic ? _Dim : _Dim + 1,
74  RowsAtCompileTime = _Mode==Projective ? Dim1 : _Dim,
75  ColsAtCompileTime = Dim1,
76  MaxRowsAtCompileTime = RowsAtCompileTime,
77  MaxColsAtCompileTime = ColsAtCompileTime,
78  Flags = 0
79  };
80 };
81 
82 template<int Mode> struct transform_make_affine;
83 
84 } // end namespace internal
85 
203 template<typename _Scalar, int _Dim, int _Mode, int _Options>
205 {
206 public:
208  enum {
209  Mode = _Mode,
210  Options = _Options,
211  Dim = _Dim,
212  HDim = _Dim+1,
213  Rows = int(Mode)==(AffineCompact) ? Dim : HDim
214  };
216  typedef _Scalar Scalar;
217  typedef Eigen::Index StorageIndex;
218  typedef Eigen::Index Index;
219 
226  typedef Block<MatrixType,Dim,Dim,int(Mode)==(AffineCompact) && (Options&RowMajor)==0> LinearPart;
228  typedef const Block<ConstMatrixType,Dim,Dim,int(Mode)==(AffineCompact) && (Options&RowMajor)==0> ConstLinearPart;
230  typedef typename internal::conditional<int(Mode)==int(AffineCompact),
231  MatrixType&,
234  typedef typename internal::conditional<int(Mode)==int(AffineCompact),
235  const MatrixType&,
245 
246  // this intermediate enum is needed to avoid an ICE with gcc 3.4 and 4.0
247  enum { TransformTimeDiagonalMode = ((Mode==int(Isometry))?Affine:int(Mode)) };
250 
251 protected:
252 
253  MatrixType m_matrix;
254 
255 public:
256 
259  EIGEN_DEVICE_FUNC inline Transform()
260  {
261  check_template_params();
262  internal::transform_make_affine<(int(Mode)==Affine || int(Mode)==Isometry) ? Affine : AffineCompact>::run(m_matrix);
263  }
264 
265  EIGEN_DEVICE_FUNC inline explicit Transform(const TranslationType& t)
266  {
267  check_template_params();
268  *this = t;
269  }
270  EIGEN_DEVICE_FUNC inline explicit Transform(const UniformScaling<Scalar>& s)
271  {
272  check_template_params();
273  *this = s;
274  }
275  template<typename Derived>
276  EIGEN_DEVICE_FUNC inline explicit Transform(const RotationBase<Derived, Dim>& r)
277  {
278  check_template_params();
279  *this = r;
280  }
281 
282  typedef internal::transform_take_affine_part<Transform> take_affine_part;
283 
285  template<typename OtherDerived>
286  EIGEN_DEVICE_FUNC inline explicit Transform(const EigenBase<OtherDerived>& other)
287  {
289  YOU_MIXED_DIFFERENT_NUMERIC_TYPES__YOU_NEED_TO_USE_THE_CAST_METHOD_OF_MATRIXBASE_TO_CAST_NUMERIC_TYPES_EXPLICITLY);
290 
291  check_template_params();
293  }
294 
296  template<typename OtherDerived>
297  EIGEN_DEVICE_FUNC inline Transform& operator=(const EigenBase<OtherDerived>& other)
298  {
300  YOU_MIXED_DIFFERENT_NUMERIC_TYPES__YOU_NEED_TO_USE_THE_CAST_METHOD_OF_MATRIXBASE_TO_CAST_NUMERIC_TYPES_EXPLICITLY);
301 
303  return *this;
304  }
305 
306  template<int OtherOptions>
307  EIGEN_DEVICE_FUNC inline Transform(const Transform<Scalar,Dim,Mode,OtherOptions>& other)
308  {
309  check_template_params();
310  // only the options change, we can directly copy the matrices
311  m_matrix = other.matrix();
312  }
313 
314  template<int OtherMode,int OtherOptions>
315  EIGEN_DEVICE_FUNC inline Transform(const Transform<Scalar,Dim,OtherMode,OtherOptions>& other)
316  {
317  check_template_params();
318  // prevent conversions as:
319  // Affine | AffineCompact | Isometry = Projective
320  EIGEN_STATIC_ASSERT(EIGEN_IMPLIES(OtherMode==int(Projective), Mode==int(Projective)),
321  YOU_PERFORMED_AN_INVALID_TRANSFORMATION_CONVERSION)
322 
323  // prevent conversions as:
324  // Isometry = Affine | AffineCompact
325  EIGEN_STATIC_ASSERT(EIGEN_IMPLIES(OtherMode==int(Affine)||OtherMode==int(AffineCompact), Mode!=int(Isometry)),
326  YOU_PERFORMED_AN_INVALID_TRANSFORMATION_CONVERSION)
327 
328  enum { ModeIsAffineCompact = Mode == int(AffineCompact),
329  OtherModeIsAffineCompact = OtherMode == int(AffineCompact)
330  };
331 
332  if(EIGEN_CONST_CONDITIONAL(ModeIsAffineCompact == OtherModeIsAffineCompact))
333  {
334  // We need the block expression because the code is compiled for all
335  // combinations of transformations and will trigger a compile time error
336  // if one tries to assign the matrices directly
337  m_matrix.template block<Dim,Dim+1>(0,0) = other.matrix().template block<Dim,Dim+1>(0,0);
338  makeAffine();
339  }
340  else if(EIGEN_CONST_CONDITIONAL(OtherModeIsAffineCompact))
341  {
342  typedef typename Transform<Scalar,Dim,OtherMode,OtherOptions>::MatrixType OtherMatrixType;
343  internal::transform_construct_from_matrix<OtherMatrixType,Mode,Options,Dim,HDim>::run(this, other.matrix());
344  }
345  else
346  {
347  // here we know that Mode == AffineCompact and OtherMode != AffineCompact.
348  // if OtherMode were Projective, the static assert above would already have caught it.
349  // So the only possibility is that OtherMode == Affine
350  linear() = other.linear();
351  translation() = other.translation();
352  }
353  }
354 
355  template<typename OtherDerived>
356  EIGEN_DEVICE_FUNC Transform(const ReturnByValue<OtherDerived>& other)
357  {
358  check_template_params();
359  other.evalTo(*this);
360  }
361 
362  template<typename OtherDerived>
363  EIGEN_DEVICE_FUNC Transform& operator=(const ReturnByValue<OtherDerived>& other)
364  {
365  other.evalTo(*this);
366  return *this;
367  }
368 
369  #ifdef EIGEN_QT_SUPPORT
370  inline Transform(const QMatrix& other);
371  inline Transform& operator=(const QMatrix& other);
372  inline QMatrix toQMatrix(void) const;
373  inline Transform(const QTransform& other);
374  inline Transform& operator=(const QTransform& other);
375  inline QTransform toQTransform(void) const;
376  #endif
377 
378  EIGEN_DEVICE_FUNC Index rows() const { return int(Mode)==int(Projective) ? m_matrix.cols() : (m_matrix.cols()-1); }
379  EIGEN_DEVICE_FUNC Index cols() const { return m_matrix.cols(); }
380 
383  EIGEN_DEVICE_FUNC inline Scalar operator() (Index row, Index col) const { return m_matrix(row,col); }
386  EIGEN_DEVICE_FUNC inline Scalar& operator() (Index row, Index col) { return m_matrix(row,col); }
387 
389  EIGEN_DEVICE_FUNC inline const MatrixType& matrix() const { return m_matrix; }
391  EIGEN_DEVICE_FUNC inline MatrixType& matrix() { return m_matrix; }
392 
394  EIGEN_DEVICE_FUNC inline ConstLinearPart linear() const { return ConstLinearPart(m_matrix,0,0); }
396  EIGEN_DEVICE_FUNC inline LinearPart linear() { return LinearPart(m_matrix,0,0); }
397 
399  EIGEN_DEVICE_FUNC inline ConstAffinePart affine() const { return take_affine_part::run(m_matrix); }
401  EIGEN_DEVICE_FUNC inline AffinePart affine() { return take_affine_part::run(m_matrix); }
402 
404  EIGEN_DEVICE_FUNC inline ConstTranslationPart translation() const { return ConstTranslationPart(m_matrix,0,Dim); }
406  EIGEN_DEVICE_FUNC inline TranslationPart translation() { return TranslationPart(m_matrix,0,Dim); }
407 
432  // note: this function is defined here because some compilers cannot find the respective declaration
433  template<typename OtherDerived>
434  EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const typename internal::transform_right_product_impl<Transform, OtherDerived>::ResultType
437 
445  template<typename OtherDerived> friend
449 
456  template<typename DiagonalDerived>
457  EIGEN_DEVICE_FUNC inline const TransformTimeDiagonalReturnType
459  {
461  res.linearExt() *= b;
462  return res;
463  }
464 
471  template<typename DiagonalDerived>
472  EIGEN_DEVICE_FUNC friend inline TransformTimeDiagonalReturnType
474  {
476  res.linear().noalias() = a*b.linear();
477  res.translation().noalias() = a*b.translation();
478  if (EIGEN_CONST_CONDITIONAL(Mode!=int(AffineCompact)))
479  res.matrix().row(Dim) = b.matrix().row(Dim);
480  return res;
481  }
482 
483  template<typename OtherDerived>
484  EIGEN_DEVICE_FUNC inline Transform& operator*=(const EigenBase<OtherDerived>& other) { return *this = *this * other; }
485 
487  EIGEN_DEVICE_FUNC inline const Transform operator * (const Transform& other) const
488  {
490  }
491 
492  #if EIGEN_COMP_ICC
493 private:
494  // this intermediate structure permits to workaround a bug in ICC 11:
495  // error: template instantiation resulted in unexpected function type of "Eigen::Transform<double, 3, 32, 0>
496  // (const Eigen::Transform<double, 3, 2, 0> &) const"
497  // (the meaning of a name may have changed since the template declaration -- the type of the template is:
498  // "Eigen::internal::transform_transform_product_impl<Eigen::Transform<double, 3, 32, 0>,
499  // Eigen::Transform<double, 3, Mode, Options>, <expression>>::ResultType (const Eigen::Transform<double, 3, Mode, Options> &) const")
500  //
501  template<int OtherMode,int OtherOptions> struct icc_11_workaround
502  {
504  typedef typename ProductType::ResultType ResultType;
505  };
506 
507 public:
509  template<int OtherMode,int OtherOptions>
510  inline typename icc_11_workaround<OtherMode,OtherOptions>::ResultType
511  operator * (const Transform<Scalar,Dim,OtherMode,OtherOptions>& other) const
512  {
513  typedef typename icc_11_workaround<OtherMode,OtherOptions>::ProductType ProductType;
514  return ProductType::run(*this,other);
515  }
516  #else
517 
518  template<int OtherMode,int OtherOptions>
519  EIGEN_DEVICE_FUNC inline typename internal::transform_transform_product_impl<Transform,Transform<Scalar,Dim,OtherMode,OtherOptions> >::ResultType
521  {
523  }
524  #endif
525 
527  EIGEN_DEVICE_FUNC void setIdentity() { m_matrix.setIdentity(); }
528 
533  EIGEN_DEVICE_FUNC static const Transform Identity()
534  {
535  return Transform(MatrixType::Identity());
536  }
537 
538  template<typename OtherDerived>
539  EIGEN_DEVICE_FUNC
540  inline Transform& scale(const MatrixBase<OtherDerived> &other);
541 
542  template<typename OtherDerived>
543  EIGEN_DEVICE_FUNC
544  inline Transform& prescale(const MatrixBase<OtherDerived> &other);
545 
546  EIGEN_DEVICE_FUNC inline Transform& scale(const Scalar& s);
547  EIGEN_DEVICE_FUNC inline Transform& prescale(const Scalar& s);
548 
549  template<typename OtherDerived>
550  EIGEN_DEVICE_FUNC
551  inline Transform& translate(const MatrixBase<OtherDerived> &other);
552 
553  template<typename OtherDerived>
554  EIGEN_DEVICE_FUNC
555  inline Transform& pretranslate(const MatrixBase<OtherDerived> &other);
556 
557  template<typename RotationType>
558  EIGEN_DEVICE_FUNC
559  inline Transform& rotate(const RotationType& rotation);
560 
561  template<typename RotationType>
562  EIGEN_DEVICE_FUNC
563  inline Transform& prerotate(const RotationType& rotation);
564 
565  EIGEN_DEVICE_FUNC Transform& shear(const Scalar& sx, const Scalar& sy);
566  EIGEN_DEVICE_FUNC Transform& preshear(const Scalar& sx, const Scalar& sy);
567 
568  EIGEN_DEVICE_FUNC inline Transform& operator=(const TranslationType& t);
569 
570  EIGEN_DEVICE_FUNC
571  inline Transform& operator*=(const TranslationType& t) { return translate(t.vector()); }
572 
573  EIGEN_DEVICE_FUNC inline Transform operator*(const TranslationType& t) const;
574 
575  EIGEN_DEVICE_FUNC
576  inline Transform& operator=(const UniformScaling<Scalar>& t);
577 
578  EIGEN_DEVICE_FUNC
579  inline Transform& operator*=(const UniformScaling<Scalar>& s) { return scale(s.factor()); }
580 
581  EIGEN_DEVICE_FUNC
582  inline TransformTimeDiagonalReturnType operator*(const UniformScaling<Scalar>& s) const
583  {
585  res.scale(s.factor());
586  return res;
587  }
588 
589  EIGEN_DEVICE_FUNC
590  inline Transform& operator*=(const DiagonalMatrix<Scalar,Dim>& s) { linearExt() *= s; return *this; }
591 
592  template<typename Derived>
593  EIGEN_DEVICE_FUNC inline Transform& operator=(const RotationBase<Derived,Dim>& r);
594  template<typename Derived>
595  EIGEN_DEVICE_FUNC inline Transform& operator*=(const RotationBase<Derived,Dim>& r) { return rotate(r.toRotationMatrix()); }
596  template<typename Derived>
597  EIGEN_DEVICE_FUNC inline Transform operator*(const RotationBase<Derived,Dim>& r) const;
598 
599  typedef typename internal::conditional<int(Mode)==Isometry,ConstLinearPart,const LinearMatrixType>::type RotationReturnType;
600  EIGEN_DEVICE_FUNC RotationReturnType rotation() const;
601 
602  template<typename RotationMatrixType, typename ScalingMatrixType>
603  EIGEN_DEVICE_FUNC
604  void computeRotationScaling(RotationMatrixType *rotation, ScalingMatrixType *scaling) const;
605  template<typename ScalingMatrixType, typename RotationMatrixType>
606  EIGEN_DEVICE_FUNC
607  void computeScalingRotation(ScalingMatrixType *scaling, RotationMatrixType *rotation) const;
608 
609  template<typename PositionDerived, typename OrientationType, typename ScaleDerived>
610  EIGEN_DEVICE_FUNC
611  Transform& fromPositionOrientationScale(const MatrixBase<PositionDerived> &position,
612  const OrientationType& orientation, const MatrixBase<ScaleDerived> &scale);
613 
614  EIGEN_DEVICE_FUNC
615  inline Transform inverse(TransformTraits traits = (TransformTraits)Mode) const;
616 
618  EIGEN_DEVICE_FUNC const Scalar* data() const { return m_matrix.data(); }
620  EIGEN_DEVICE_FUNC Scalar* data() { return m_matrix.data(); }
621 
627  template<typename NewScalarType>
630 
632  template<typename OtherScalarType>
633  EIGEN_DEVICE_FUNC inline explicit Transform(const Transform<OtherScalarType,Dim,Mode,Options>& other)
634  {
635  check_template_params();
636  m_matrix = other.matrix().template cast<Scalar>();
637  }
638 
643  EIGEN_DEVICE_FUNC bool isApprox(const Transform& other, const typename NumTraits<Scalar>::Real& prec = NumTraits<Scalar>::dummy_precision()) const
644  { return m_matrix.isApprox(other.m_matrix, prec); }
645 
648  EIGEN_DEVICE_FUNC void makeAffine()
649  {
650  internal::transform_make_affine<int(Mode)>::run(m_matrix);
651  }
652 
657  EIGEN_DEVICE_FUNC inline Block<MatrixType,int(Mode)==int(Projective)?HDim:Dim,Dim> linearExt()
658  { return m_matrix.template block<int(Mode)==int(Projective)?HDim:Dim,Dim>(0,0); }
663  EIGEN_DEVICE_FUNC inline const Block<MatrixType,int(Mode)==int(Projective)?HDim:Dim,Dim> linearExt() const
664  { return m_matrix.template block<int(Mode)==int(Projective)?HDim:Dim,Dim>(0,0); }
665 
670  EIGEN_DEVICE_FUNC inline Block<MatrixType,int(Mode)==int(Projective)?HDim:Dim,1> translationExt()
671  { return m_matrix.template block<int(Mode)==int(Projective)?HDim:Dim,1>(0,Dim); }
676  EIGEN_DEVICE_FUNC inline const Block<MatrixType,int(Mode)==int(Projective)?HDim:Dim,1> translationExt() const
677  { return m_matrix.template block<int(Mode)==int(Projective)?HDim:Dim,1>(0,Dim); }
678 
679 
680  #ifdef EIGEN_TRANSFORM_PLUGIN
681  #include EIGEN_TRANSFORM_PLUGIN
682  #endif
683 
684 protected:
685  #ifndef EIGEN_PARSED_BY_DOXYGEN
686  EIGEN_DEVICE_FUNC static EIGEN_STRONG_INLINE void check_template_params()
687  {
688  EIGEN_STATIC_ASSERT((Options & (DontAlign|RowMajor)) == Options, INVALID_MATRIX_TEMPLATE_PARAMETERS)
689  }
690  #endif
691 
692 };
693 
695 typedef Transform<float,2,Isometry> Isometry2f;
697 typedef Transform<float,3,Isometry> Isometry3f;
699 typedef Transform<double,2,Isometry> Isometry2d;
701 typedef Transform<double,3,Isometry> Isometry3d;
702 
704 typedef Transform<float,2,Affine> Affine2f;
706 typedef Transform<float,3,Affine> Affine3f;
708 typedef Transform<double,2,Affine> Affine2d;
710 typedef Transform<double,3,Affine> Affine3d;
711 
713 typedef Transform<float,2,AffineCompact> AffineCompact2f;
715 typedef Transform<float,3,AffineCompact> AffineCompact3f;
717 typedef Transform<double,2,AffineCompact> AffineCompact2d;
719 typedef Transform<double,3,AffineCompact> AffineCompact3d;
720 
722 typedef Transform<float,2,Projective> Projective2f;
724 typedef Transform<float,3,Projective> Projective3f;
726 typedef Transform<double,2,Projective> Projective2d;
728 typedef Transform<double,3,Projective> Projective3d;
729 
730 /**************************
731 *** Optional QT support ***
732 **************************/
733 
734 #ifdef EIGEN_QT_SUPPORT
735 
739 template<typename Scalar, int Dim, int Mode,int Options>
741 {
742  check_template_params();
743  *this = other;
744 }
745 
750 template<typename Scalar, int Dim, int Mode,int Options>
751 Transform<Scalar,Dim,Mode,Options>& Transform<Scalar,Dim,Mode,Options>::operator=(const QMatrix& other)
752 {
753  EIGEN_STATIC_ASSERT(Dim==2, YOU_MADE_A_PROGRAMMING_MISTAKE)
754  if (EIGEN_CONST_CONDITIONAL(Mode == int(AffineCompact)))
755  m_matrix << other.m11(), other.m21(), other.dx(),
756  other.m12(), other.m22(), other.dy();
757  else
758  m_matrix << other.m11(), other.m21(), other.dx(),
759  other.m12(), other.m22(), other.dy(),
760  0, 0, 1;
761  return *this;
762 }
763 
770 template<typename Scalar, int Dim, int Mode, int Options>
771 QMatrix Transform<Scalar,Dim,Mode,Options>::toQMatrix(void) const
772 {
773  check_template_params();
774  EIGEN_STATIC_ASSERT(Dim==2, YOU_MADE_A_PROGRAMMING_MISTAKE)
775  return QMatrix(m_matrix.coeff(0,0), m_matrix.coeff(1,0),
776  m_matrix.coeff(0,1), m_matrix.coeff(1,1),
777  m_matrix.coeff(0,2), m_matrix.coeff(1,2));
778 }
779 
784 template<typename Scalar, int Dim, int Mode,int Options>
785 Transform<Scalar,Dim,Mode,Options>::Transform(const QTransform& other)
786 {
787  check_template_params();
788  *this = other;
789 }
790 
795 template<typename Scalar, int Dim, int Mode, int Options>
796 Transform<Scalar,Dim,Mode,Options>& Transform<Scalar,Dim,Mode,Options>::operator=(const QTransform& other)
797 {
798  check_template_params();
799  EIGEN_STATIC_ASSERT(Dim==2, YOU_MADE_A_PROGRAMMING_MISTAKE)
800  if (EIGEN_CONST_CONDITIONAL(Mode == int(AffineCompact)))
801  m_matrix << other.m11(), other.m21(), other.dx(),
802  other.m12(), other.m22(), other.dy();
803  else
804  m_matrix << other.m11(), other.m21(), other.dx(),
805  other.m12(), other.m22(), other.dy(),
806  other.m13(), other.m23(), other.m33();
807  return *this;
808 }
809 
814 template<typename Scalar, int Dim, int Mode, int Options>
815 QTransform Transform<Scalar,Dim,Mode,Options>::toQTransform(void) const
816 {
817  EIGEN_STATIC_ASSERT(Dim==2, YOU_MADE_A_PROGRAMMING_MISTAKE)
818  if (EIGEN_CONST_CONDITIONAL(Mode == int(AffineCompact)))
819  return QTransform(m_matrix.coeff(0,0), m_matrix.coeff(1,0),
820  m_matrix.coeff(0,1), m_matrix.coeff(1,1),
821  m_matrix.coeff(0,2), m_matrix.coeff(1,2));
822  else
823  return QTransform(m_matrix.coeff(0,0), m_matrix.coeff(1,0), m_matrix.coeff(2,0),
824  m_matrix.coeff(0,1), m_matrix.coeff(1,1), m_matrix.coeff(2,1),
825  m_matrix.coeff(0,2), m_matrix.coeff(1,2), m_matrix.coeff(2,2));
826 }
827 #endif
828 
829 /*********************
830 *** Procedural API ***
831 *********************/
832 
837 template<typename Scalar, int Dim, int Mode, int Options>
838 template<typename OtherDerived>
839 EIGEN_DEVICE_FUNC Transform<Scalar,Dim,Mode,Options>&
841 {
842  EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(OtherDerived,int(Dim))
843  EIGEN_STATIC_ASSERT(Mode!=int(Isometry), THIS_METHOD_IS_ONLY_FOR_SPECIFIC_TRANSFORMATIONS)
844  linearExt().noalias() = (linearExt() * other.asDiagonal());
845  return *this;
846 }
847 
852 template<typename Scalar, int Dim, int Mode, int Options>
854 {
855  EIGEN_STATIC_ASSERT(Mode!=int(Isometry), THIS_METHOD_IS_ONLY_FOR_SPECIFIC_TRANSFORMATIONS)
856  linearExt() *= s;
857  return *this;
858 }
859 
864 template<typename Scalar, int Dim, int Mode, int Options>
865 template<typename OtherDerived>
866 EIGEN_DEVICE_FUNC Transform<Scalar,Dim,Mode,Options>&
868 {
869  EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(OtherDerived,int(Dim))
870  EIGEN_STATIC_ASSERT(Mode!=int(Isometry), THIS_METHOD_IS_ONLY_FOR_SPECIFIC_TRANSFORMATIONS)
871  affine().noalias() = (other.asDiagonal() * affine());
872  return *this;
873 }
874 
879 template<typename Scalar, int Dim, int Mode, int Options>
881 {
882  EIGEN_STATIC_ASSERT(Mode!=int(Isometry), THIS_METHOD_IS_ONLY_FOR_SPECIFIC_TRANSFORMATIONS)
883  m_matrix.template topRows<Dim>() *= s;
884  return *this;
885 }
886 
891 template<typename Scalar, int Dim, int Mode, int Options>
892 template<typename OtherDerived>
893 EIGEN_DEVICE_FUNC Transform<Scalar,Dim,Mode,Options>&
895 {
896  EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(OtherDerived,int(Dim))
897  translationExt() += linearExt() * other;
898  return *this;
899 }
900 
905 template<typename Scalar, int Dim, int Mode, int Options>
906 template<typename OtherDerived>
907 EIGEN_DEVICE_FUNC Transform<Scalar,Dim,Mode,Options>&
909 {
910  EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(OtherDerived,int(Dim))
911  if(EIGEN_CONST_CONDITIONAL(int(Mode)==int(Projective)))
912  affine() += other * m_matrix.row(Dim);
913  else
914  translation() += other;
915  return *this;
916 }
917 
935 template<typename Scalar, int Dim, int Mode, int Options>
936 template<typename RotationType>
937 EIGEN_DEVICE_FUNC Transform<Scalar,Dim,Mode,Options>&
938 Transform<Scalar,Dim,Mode,Options>::rotate(const RotationType& rotation)
939 {
940  linearExt() *= internal::toRotationMatrix<Scalar,Dim>(rotation);
941  return *this;
942 }
943 
951 template<typename Scalar, int Dim, int Mode, int Options>
952 template<typename RotationType>
953 EIGEN_DEVICE_FUNC Transform<Scalar,Dim,Mode,Options>&
955 {
956  m_matrix.template block<Dim,HDim>(0,0) = internal::toRotationMatrix<Scalar,Dim>(rotation)
957  * m_matrix.template block<Dim,HDim>(0,0);
958  return *this;
959 }
960 
966 template<typename Scalar, int Dim, int Mode, int Options>
967 EIGEN_DEVICE_FUNC Transform<Scalar,Dim,Mode,Options>&
969 {
970  EIGEN_STATIC_ASSERT(int(Dim)==2, YOU_MADE_A_PROGRAMMING_MISTAKE)
971  EIGEN_STATIC_ASSERT(Mode!=int(Isometry), THIS_METHOD_IS_ONLY_FOR_SPECIFIC_TRANSFORMATIONS)
972  VectorType tmp = linear().col(0)*sy + linear().col(1);
973  linear() << linear().col(0) + linear().col(1)*sx, tmp;
974  return *this;
975 }
976 
982 template<typename Scalar, int Dim, int Mode, int Options>
983 EIGEN_DEVICE_FUNC Transform<Scalar,Dim,Mode,Options>&
985 {
986  EIGEN_STATIC_ASSERT(int(Dim)==2, YOU_MADE_A_PROGRAMMING_MISTAKE)
987  EIGEN_STATIC_ASSERT(Mode!=int(Isometry), THIS_METHOD_IS_ONLY_FOR_SPECIFIC_TRANSFORMATIONS)
988  m_matrix.template block<Dim,HDim>(0,0) = LinearMatrixType(1, sx, sy, 1) * m_matrix.template block<Dim,HDim>(0,0);
989  return *this;
990 }
991 
992 /******************************************************
993 *** Scaling, Translation and Rotation compatibility ***
994 ******************************************************/
995 
996 template<typename Scalar, int Dim, int Mode, int Options>
997 EIGEN_DEVICE_FUNC inline Transform<Scalar,Dim,Mode,Options>& Transform<Scalar,Dim,Mode,Options>::operator=(const TranslationType& t)
998 {
999  linear().setIdentity();
1000  translation() = t.vector();
1001  makeAffine();
1002  return *this;
1003 }
1004 
1005 template<typename Scalar, int Dim, int Mode, int Options>
1006 EIGEN_DEVICE_FUNC inline Transform<Scalar,Dim,Mode,Options> Transform<Scalar,Dim,Mode,Options>::operator*(const TranslationType& t) const
1007 {
1008  Transform res = *this;
1009  res.translate(t.vector());
1010  return res;
1011 }
1012 
1013 template<typename Scalar, int Dim, int Mode, int Options>
1014 EIGEN_DEVICE_FUNC inline Transform<Scalar,Dim,Mode,Options>& Transform<Scalar,Dim,Mode,Options>::operator=(const UniformScaling<Scalar>& s)
1015 {
1016  m_matrix.setZero();
1017  linear().diagonal().fill(s.factor());
1018  makeAffine();
1019  return *this;
1020 }
1021 
1022 template<typename Scalar, int Dim, int Mode, int Options>
1023 template<typename Derived>
1024 EIGEN_DEVICE_FUNC inline Transform<Scalar,Dim,Mode,Options>& Transform<Scalar,Dim,Mode,Options>::operator=(const RotationBase<Derived,Dim>& r)
1025 {
1026  linear() = internal::toRotationMatrix<Scalar,Dim>(r);
1027  translation().setZero();
1028  makeAffine();
1029  return *this;
1030 }
1031 
1032 template<typename Scalar, int Dim, int Mode, int Options>
1033 template<typename Derived>
1034 EIGEN_DEVICE_FUNC inline Transform<Scalar,Dim,Mode,Options> Transform<Scalar,Dim,Mode,Options>::operator*(const RotationBase<Derived,Dim>& r) const
1035 {
1036  Transform res = *this;
1037  res.rotate(r.derived());
1038  return res;
1039 }
1040 
1041 /************************
1042 *** Special functions ***
1043 ************************/
1044 
1045 namespace internal {
1046 template<int Mode> struct transform_rotation_impl {
1047  template<typename TransformType>
1048  EIGEN_DEVICE_FUNC static inline
1049  const typename TransformType::LinearMatrixType run(const TransformType& t)
1050  {
1051  typedef typename TransformType::LinearMatrixType LinearMatrixType;
1052  LinearMatrixType result;
1053  t.computeRotationScaling(&result, (LinearMatrixType*)0);
1054  return result;
1055  }
1056 };
1057 template<> struct transform_rotation_impl<Isometry> {
1058  template<typename TransformType>
1059  EIGEN_DEVICE_FUNC static inline
1060  typename TransformType::ConstLinearPart run(const TransformType& t)
1061  {
1062  return t.linear();
1063  }
1064 };
1065 }
1076 template<typename Scalar, int Dim, int Mode, int Options>
1077 EIGEN_DEVICE_FUNC
1078 typename Transform<Scalar,Dim,Mode,Options>::RotationReturnType
1080 {
1082 }
1083 
1084 
1096 template<typename Scalar, int Dim, int Mode, int Options>
1097 template<typename RotationMatrixType, typename ScalingMatrixType>
1098 EIGEN_DEVICE_FUNC void Transform<Scalar,Dim,Mode,Options>::computeRotationScaling(RotationMatrixType *rotation, ScalingMatrixType *scaling) const
1099 {
1101 
1102  Scalar x = (svd.matrixU() * svd.matrixV().adjoint()).determinant(); // so x has absolute value 1
1103  VectorType sv(svd.singularValues());
1104  sv.coeffRef(0) *= x;
1105  if(scaling) *scaling = svd.matrixV() * sv.asDiagonal() * svd.matrixV().adjoint();
1106  if(rotation)
1107  {
1108  LinearMatrixType m(svd.matrixU());
1109  m.col(0) /= x;
1110  *rotation = m * svd.matrixV().adjoint();
1111  }
1112 }
1113 
1125 template<typename Scalar, int Dim, int Mode, int Options>
1126 template<typename ScalingMatrixType, typename RotationMatrixType>
1127 EIGEN_DEVICE_FUNC void Transform<Scalar,Dim,Mode,Options>::computeScalingRotation(ScalingMatrixType *scaling, RotationMatrixType *rotation) const
1128 {
1130 
1131  Scalar x = (svd.matrixU() * svd.matrixV().adjoint()).determinant(); // so x has absolute value 1
1132  VectorType sv(svd.singularValues());
1133  sv.coeffRef(0) *= x;
1134  if(scaling) *scaling = svd.matrixU() * sv.asDiagonal() * svd.matrixU().adjoint();
1135  if(rotation)
1136  {
1137  LinearMatrixType m(svd.matrixU());
1138  m.col(0) /= x;
1139  *rotation = m * svd.matrixV().adjoint();
1140  }
1141 }
1142 
1146 template<typename Scalar, int Dim, int Mode, int Options>
1147 template<typename PositionDerived, typename OrientationType, typename ScaleDerived>
1148 EIGEN_DEVICE_FUNC Transform<Scalar,Dim,Mode,Options>&
1150  const OrientationType& orientation, const MatrixBase<ScaleDerived> &scale)
1151 {
1152  linear() = internal::toRotationMatrix<Scalar,Dim>(orientation);
1153  linear() *= scale.asDiagonal();
1154  translation() = position;
1155  makeAffine();
1156  return *this;
1157 }
1158 
1159 namespace internal {
1160 
1161 template<int Mode>
1163 {
1164  template<typename MatrixType>
1165  EIGEN_DEVICE_FUNC static void run(MatrixType &mat)
1166  {
1167  static const int Dim = MatrixType::ColsAtCompileTime-1;
1168  mat.template block<1,Dim>(Dim,0).setZero();
1169  mat.coeffRef(Dim,Dim) = typename MatrixType::Scalar(1);
1170  }
1171 };
1172 
1173 template<>
1175 {
1176  template<typename MatrixType> EIGEN_DEVICE_FUNC static void run(MatrixType &) { }
1177 };
1178 
1179 // selector needed to avoid taking the inverse of a 3x4 matrix
1180 template<typename TransformType, int Mode=TransformType::Mode>
1182 {
1183  EIGEN_DEVICE_FUNC static inline void run(const TransformType&, TransformType&)
1184  {}
1185 };
1186 
1187 template<typename TransformType>
1189 {
1190  EIGEN_DEVICE_FUNC static inline void run(const TransformType& m, TransformType& res)
1191  {
1192  res.matrix() = m.matrix().inverse();
1193  }
1194 };
1195 
1196 } // end namespace internal
1197 
1198 
1219 template<typename Scalar, int Dim, int Mode, int Options>
1220 EIGEN_DEVICE_FUNC Transform<Scalar,Dim,Mode,Options>
1222 {
1223  Transform res;
1224  if (hint == Projective)
1225  {
1227  }
1228  else
1229  {
1230  if (hint == Isometry)
1231  {
1232  res.matrix().template topLeftCorner<Dim,Dim>() = linear().transpose();
1233  }
1234  else if(hint&Affine)
1235  {
1236  res.matrix().template topLeftCorner<Dim,Dim>() = linear().inverse();
1237  }
1238  else
1239  {
1240  eigen_assert(false && "Invalid transform traits in Transform::Inverse");
1241  }
1242  // translation and remaining parts
1243  res.matrix().template topRightCorner<Dim,1>()
1244  = - res.matrix().template topLeftCorner<Dim,Dim>() * translation();
1245  res.makeAffine(); // we do need this, because in the beginning res is uninitialized
1246  }
1247  return res;
1248 }
1249 
1250 namespace internal {
1251 
1252 /*****************************************************
1253 *** Specializations of take affine part ***
1254 *****************************************************/
1255 
1256 template<typename TransformType> struct transform_take_affine_part {
1257  typedef typename TransformType::MatrixType MatrixType;
1258  typedef typename TransformType::AffinePart AffinePart;
1259  typedef typename TransformType::ConstAffinePart ConstAffinePart;
1260  static inline AffinePart run(MatrixType& m)
1261  { return m.template block<TransformType::Dim,TransformType::HDim>(0,0); }
1262  static inline ConstAffinePart run(const MatrixType& m)
1263  { return m.template block<TransformType::Dim,TransformType::HDim>(0,0); }
1264 };
1265 
1266 template<typename Scalar, int Dim, int Options>
1267 struct transform_take_affine_part<Transform<Scalar,Dim,AffineCompact, Options> > {
1269  static inline MatrixType& run(MatrixType& m) { return m; }
1270  static inline const MatrixType& run(const MatrixType& m) { return m; }
1271 };
1272 
1273 /*****************************************************
1274 *** Specializations of construct from matrix ***
1275 *****************************************************/
1276 
1277 template<typename Other, int Mode, int Options, int Dim, int HDim>
1278 struct transform_construct_from_matrix<Other, Mode,Options,Dim,HDim, Dim,Dim>
1279 {
1280  static inline void run(Transform<typename Other::Scalar,Dim,Mode,Options> *transform, const Other& other)
1281  {
1282  transform->linear() = other;
1283  transform->translation().setZero();
1284  transform->makeAffine();
1285  }
1286 };
1287 
1288 template<typename Other, int Mode, int Options, int Dim, int HDim>
1289 struct transform_construct_from_matrix<Other, Mode,Options,Dim,HDim, Dim,HDim>
1290 {
1291  static inline void run(Transform<typename Other::Scalar,Dim,Mode,Options> *transform, const Other& other)
1292  {
1293  transform->affine() = other;
1294  transform->makeAffine();
1295  }
1296 };
1297 
1298 template<typename Other, int Mode, int Options, int Dim, int HDim>
1299 struct transform_construct_from_matrix<Other, Mode,Options,Dim,HDim, HDim,HDim>
1300 {
1301  static inline void run(Transform<typename Other::Scalar,Dim,Mode,Options> *transform, const Other& other)
1302  { transform->matrix() = other; }
1303 };
1304 
1305 template<typename Other, int Options, int Dim, int HDim>
1306 struct transform_construct_from_matrix<Other, AffineCompact,Options,Dim,HDim, HDim,HDim>
1307 {
1308  static inline void run(Transform<typename Other::Scalar,Dim,AffineCompact,Options> *transform, const Other& other)
1309  { transform->matrix() = other.template block<Dim,HDim>(0,0); }
1310 };
1311 
1312 /**********************************************************
1313 *** Specializations of operator* with rhs EigenBase ***
1314 **********************************************************/
1315 
1316 template<int LhsMode,int RhsMode>
1318 {
1319  enum
1320  {
1321  Mode =
1322  (LhsMode == (int)Projective || RhsMode == (int)Projective ) ? Projective :
1323  (LhsMode == (int)Affine || RhsMode == (int)Affine ) ? Affine :
1324  (LhsMode == (int)AffineCompact || RhsMode == (int)AffineCompact ) ? AffineCompact :
1325  (LhsMode == (int)Isometry || RhsMode == (int)Isometry ) ? Isometry : Projective
1326  };
1327 };
1328 
1329 template< typename TransformType, typename MatrixType, int RhsCols>
1330 struct transform_right_product_impl< TransformType, MatrixType, 0, RhsCols>
1331 {
1332  typedef typename MatrixType::PlainObject ResultType;
1333 
1334  static EIGEN_STRONG_INLINE ResultType run(const TransformType& T, const MatrixType& other)
1335  {
1336  return T.matrix() * other;
1337  }
1338 };
1339 
1340 template< typename TransformType, typename MatrixType, int RhsCols>
1341 struct transform_right_product_impl< TransformType, MatrixType, 1, RhsCols>
1342 {
1343  enum {
1344  Dim = TransformType::Dim,
1345  HDim = TransformType::HDim,
1346  OtherRows = MatrixType::RowsAtCompileTime,
1347  OtherCols = MatrixType::ColsAtCompileTime
1348  };
1349 
1350  typedef typename MatrixType::PlainObject ResultType;
1351 
1352  static EIGEN_STRONG_INLINE ResultType run(const TransformType& T, const MatrixType& other)
1353  {
1354  EIGEN_STATIC_ASSERT(OtherRows==HDim, YOU_MIXED_MATRICES_OF_DIFFERENT_SIZES);
1355 
1356  typedef Block<ResultType, Dim, OtherCols, int(MatrixType::RowsAtCompileTime)==Dim> TopLeftLhs;
1357 
1358  ResultType res(other.rows(),other.cols());
1359  TopLeftLhs(res, 0, 0, Dim, other.cols()).noalias() = T.affine() * other;
1360  res.row(OtherRows-1) = other.row(OtherRows-1);
1361 
1362  return res;
1363  }
1364 };
1365 
1366 template< typename TransformType, typename MatrixType, int RhsCols>
1367 struct transform_right_product_impl< TransformType, MatrixType, 2, RhsCols>
1368 {
1369  enum {
1370  Dim = TransformType::Dim,
1371  HDim = TransformType::HDim,
1372  OtherRows = MatrixType::RowsAtCompileTime,
1373  OtherCols = MatrixType::ColsAtCompileTime
1374  };
1375 
1376  typedef typename MatrixType::PlainObject ResultType;
1377 
1378  static EIGEN_STRONG_INLINE ResultType run(const TransformType& T, const MatrixType& other)
1379  {
1380  EIGEN_STATIC_ASSERT(OtherRows==Dim, YOU_MIXED_MATRICES_OF_DIFFERENT_SIZES);
1381 
1382  typedef Block<ResultType, Dim, OtherCols, true> TopLeftLhs;
1383  ResultType res(Replicate<typename TransformType::ConstTranslationPart, 1, OtherCols>(T.translation(),1,other.cols()));
1384  TopLeftLhs(res, 0, 0, Dim, other.cols()).noalias() += T.linear() * other;
1385 
1386  return res;
1387  }
1388 };
1389 
1390 template< typename TransformType, typename MatrixType >
1391 struct transform_right_product_impl< TransformType, MatrixType, 2, 1> // rhs is a vector of size Dim
1392 {
1393  typedef typename TransformType::MatrixType TransformMatrix;
1394  enum {
1395  Dim = TransformType::Dim,
1396  HDim = TransformType::HDim,
1397  OtherRows = MatrixType::RowsAtCompileTime,
1398  WorkingRows = EIGEN_PLAIN_ENUM_MIN(TransformMatrix::RowsAtCompileTime,HDim)
1399  };
1400 
1401  typedef typename MatrixType::PlainObject ResultType;
1402 
1403  static EIGEN_STRONG_INLINE ResultType run(const TransformType& T, const MatrixType& other)
1404  {
1405  EIGEN_STATIC_ASSERT(OtherRows==Dim, YOU_MIXED_MATRICES_OF_DIFFERENT_SIZES);
1406 
1408  rhs.template head<Dim>() = other; rhs[Dim] = typename ResultType::Scalar(1);
1410  return res.template head<Dim>();
1411  }
1412 };
1413 
1414 /**********************************************************
1415 *** Specializations of operator* with lhs EigenBase ***
1416 **********************************************************/
1417 
1418 // generic HDim x HDim matrix * T => Projective
1419 template<typename Other,int Mode, int Options, int Dim, int HDim>
1420 struct transform_left_product_impl<Other,Mode,Options,Dim,HDim, HDim,HDim>
1421 {
1423  typedef typename TransformType::MatrixType MatrixType;
1425  static ResultType run(const Other& other,const TransformType& tr)
1426  { return ResultType(other * tr.matrix()); }
1427 };
1428 
1429 // generic HDim x HDim matrix * AffineCompact => Projective
1430 template<typename Other, int Options, int Dim, int HDim>
1431 struct transform_left_product_impl<Other,AffineCompact,Options,Dim,HDim, HDim,HDim>
1432 {
1434  typedef typename TransformType::MatrixType MatrixType;
1436  static ResultType run(const Other& other,const TransformType& tr)
1437  {
1438  ResultType res;
1439  res.matrix().noalias() = other.template block<HDim,Dim>(0,0) * tr.matrix();
1440  res.matrix().col(Dim) += other.col(Dim);
1441  return res;
1442  }
1443 };
1444 
1445 // affine matrix * T
1446 template<typename Other,int Mode, int Options, int Dim, int HDim>
1447 struct transform_left_product_impl<Other,Mode,Options,Dim,HDim, Dim,HDim>
1448 {
1450  typedef typename TransformType::MatrixType MatrixType;
1451  typedef TransformType ResultType;
1452  static ResultType run(const Other& other,const TransformType& tr)
1453  {
1454  ResultType res;
1455  res.affine().noalias() = other * tr.matrix();
1456  res.matrix().row(Dim) = tr.matrix().row(Dim);
1457  return res;
1458  }
1459 };
1460 
1461 // affine matrix * AffineCompact
1462 template<typename Other, int Options, int Dim, int HDim>
1463 struct transform_left_product_impl<Other,AffineCompact,Options,Dim,HDim, Dim,HDim>
1464 {
1466  typedef typename TransformType::MatrixType MatrixType;
1467  typedef TransformType ResultType;
1468  static ResultType run(const Other& other,const TransformType& tr)
1469  {
1470  ResultType res;
1471  res.matrix().noalias() = other.template block<Dim,Dim>(0,0) * tr.matrix();
1472  res.translation() += other.col(Dim);
1473  return res;
1474  }
1475 };
1476 
1477 // linear matrix * T
1478 template<typename Other,int Mode, int Options, int Dim, int HDim>
1479 struct transform_left_product_impl<Other,Mode,Options,Dim,HDim, Dim,Dim>
1480 {
1482  typedef typename TransformType::MatrixType MatrixType;
1483  typedef TransformType ResultType;
1484  static ResultType run(const Other& other, const TransformType& tr)
1485  {
1486  TransformType res;
1487  if(Mode!=int(AffineCompact))
1488  res.matrix().row(Dim) = tr.matrix().row(Dim);
1489  res.matrix().template topRows<Dim>().noalias()
1490  = other * tr.matrix().template topRows<Dim>();
1491  return res;
1492  }
1493 };
1494 
1495 /**********************************************************
1496 *** Specializations of operator* with another Transform ***
1497 **********************************************************/
1498 
1499 template<typename Scalar, int Dim, int LhsMode, int LhsOptions, int RhsMode, int RhsOptions>
1500 struct transform_transform_product_impl<Transform<Scalar,Dim,LhsMode,LhsOptions>,Transform<Scalar,Dim,RhsMode,RhsOptions>,false >
1501 {
1506  static ResultType run(const Lhs& lhs, const Rhs& rhs)
1507  {
1508  ResultType res;
1509  res.linear() = lhs.linear() * rhs.linear();
1510  res.translation() = lhs.linear() * rhs.translation() + lhs.translation();
1511  res.makeAffine();
1512  return res;
1513  }
1514 };
1515 
1516 template<typename Scalar, int Dim, int LhsMode, int LhsOptions, int RhsMode, int RhsOptions>
1517 struct transform_transform_product_impl<Transform<Scalar,Dim,LhsMode,LhsOptions>,Transform<Scalar,Dim,RhsMode,RhsOptions>,true >
1518 {
1522  static ResultType run(const Lhs& lhs, const Rhs& rhs)
1523  {
1524  return ResultType( lhs.matrix() * rhs.matrix() );
1525  }
1526 };
1527 
1528 template<typename Scalar, int Dim, int LhsOptions, int RhsOptions>
1529 struct transform_transform_product_impl<Transform<Scalar,Dim,AffineCompact,LhsOptions>,Transform<Scalar,Dim,Projective,RhsOptions>,true >
1530 {
1534  static ResultType run(const Lhs& lhs, const Rhs& rhs)
1535  {
1536  ResultType res;
1537  res.matrix().template topRows<Dim>() = lhs.matrix() * rhs.matrix();
1538  res.matrix().row(Dim) = rhs.matrix().row(Dim);
1539  return res;
1540  }
1541 };
1542 
1543 template<typename Scalar, int Dim, int LhsOptions, int RhsOptions>
1544 struct transform_transform_product_impl<Transform<Scalar,Dim,Projective,LhsOptions>,Transform<Scalar,Dim,AffineCompact,RhsOptions>,true >
1545 {
1549  static ResultType run(const Lhs& lhs, const Rhs& rhs)
1550  {
1551  ResultType res(lhs.matrix().template leftCols<Dim>() * rhs.matrix());
1552  res.matrix().col(Dim) += lhs.matrix().col(Dim);
1553  return res;
1554  }
1555 };
1556 
1557 } // end namespace internal
1558 
1559 } // end namespace Eigen
1560 
1561 #endif // EIGEN_TRANSFORM_H
Eigen::Transform::matrix
EIGEN_DEVICE_FUNC const MatrixType & matrix() const
Definition: Transform.h:389
Eigen::Transform::rotation
EIGEN_DEVICE_FUNC RotationReturnType rotation() const
Definition: Transform.h:1079
Eigen::Transform::operator=
EIGEN_DEVICE_FUNC Transform & operator=(const EigenBase< OtherDerived > &other)
Definition: Transform.h:297
Eigen
Namespace containing all symbols from the Eigen library.
Definition: LDLT.h:16
Eigen::internal::cast_return_type
Definition: XprHelper.h:518
Eigen::Transform::Identity
static EIGEN_DEVICE_FUNC const Transform Identity()
Returns an identity transformation.
Definition: Transform.h:533
Eigen::Block
Expression of a fixed-size or dynamic-size block.
Definition: Block.h:105
Eigen::EigenBase::derived
EIGEN_DEVICE_FUNC Derived & derived()
Definition: EigenBase.h:46
Eigen::ComputeFullV
@ ComputeFullV
Definition: Constants.h:396
Eigen::Transform
Represents an homogeneous transformation in a N dimensional space.
Definition: Transform.h:205
Eigen::Affine
@ Affine
Definition: Constants.h:459
Eigen::Transform::setIdentity
EIGEN_DEVICE_FUNC void setIdentity()
Definition: Transform.h:527
Eigen::internal::transform_construct_from_matrix
Definition: Transform.h:62
Eigen::EigenBase
Definition: EigenBase.h:30
Eigen::RowMajorBit
const unsigned int RowMajorBit
Definition: Constants.h:65
Eigen::Transform::MatrixType
internal::make_proper_matrix_type< Scalar, Rows, HDim, Options >::type MatrixType
Definition: Transform.h:220
Eigen::Transform::isApprox
EIGEN_DEVICE_FUNC bool isApprox(const Transform &other, const typename NumTraits< Scalar >::Real &prec=NumTraits< Scalar >::dummy_precision()) const
Definition: Transform.h:643
Eigen::Transform::ConstLinearPart
const Block< ConstMatrixType, Dim, Dim, int(Mode)==(AffineCompact) &&(Options &RowMajor)==0 > ConstLinearPart
Definition: Transform.h:228
Eigen::internal::transform_make_affine
Definition: Transform.h:1163
Eigen::Transform::computeRotationScaling
EIGEN_DEVICE_FUNC void computeRotationScaling(RotationMatrixType *rotation, ScalingMatrixType *scaling) const
Definition: Transform.h:1098
Eigen::ComputeFullU
@ ComputeFullU
Definition: Constants.h:392
Eigen::Transform::computeScalingRotation
EIGEN_DEVICE_FUNC void computeScalingRotation(ScalingMatrixType *scaling, RotationMatrixType *rotation) const
Definition: Transform.h:1127
Eigen::Transform::LinearMatrixType
Matrix< Scalar, Dim, Dim, Options > LinearMatrixType
Definition: Transform.h:224
Eigen::RowMajor
@ RowMajor
Definition: Constants.h:320
Eigen::internal::transform_product_result
Definition: Transform.h:1318
Eigen::Transform::TranslationPart
Block< MatrixType, Dim, 1,!(internal::traits< MatrixType >::Flags &RowMajorBit)> TranslationPart
Definition: Transform.h:240
Eigen::DontAlign
@ DontAlign
Definition: Constants.h:324
Eigen::Transform::VectorType
Matrix< Scalar, Dim, 1 > VectorType
Definition: Transform.h:238
Eigen::Transform::shear
EIGEN_DEVICE_FUNC Transform & shear(const Scalar &sx, const Scalar &sy)
Definition: Transform.h:968
Eigen::PlainObjectBase::coeff
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar & coeff(Index rowId, Index colId) const
Definition: PlainObjectBase.h:160
Eigen::Transform::ConstAffinePart
internal::conditional< int(Mode)==int(AffineCompact), const MatrixType &, const Block< const MatrixType, Dim, HDim > >::type ConstAffinePart
Definition: Transform.h:236
Eigen::Transform::makeAffine
EIGEN_DEVICE_FUNC void makeAffine()
Definition: Transform.h:648
Eigen::Transform::Transform
EIGEN_DEVICE_FUNC Transform(const EigenBase< OtherDerived > &other)
Definition: Transform.h:286
Eigen::internal::true_type
Definition: Meta.h:63
Eigen::MatrixBase::asDiagonal
EIGEN_DEVICE_FUNC const DiagonalWrapper< const Derived > asDiagonal() const
Definition: DiagonalMatrix.h:325
Eigen::Isometry
@ Isometry
Definition: Constants.h:456
Eigen::internal::transform_rotation_impl
Definition: Transform.h:1048
Eigen::TransformTraits
TransformTraits
Definition: Constants.h:454
Eigen::Transform::Scalar
_Scalar Scalar
Definition: Transform.h:214
Eigen::Dynamic
const int Dynamic
Definition: Constants.h:21
Eigen::Transform::affine
EIGEN_DEVICE_FUNC AffinePart affine()
Definition: Transform.h:401
Eigen::Transform::linear
EIGEN_DEVICE_FUNC ConstLinearPart linear() const
Definition: Transform.h:394
Eigen::Transform::ConstMatrixType
const MatrixType ConstMatrixType
Definition: Transform.h:222
Eigen::Transform::ConstTranslationPart
const Block< ConstMatrixType, Dim, 1,!(internal::traits< MatrixType >::Flags &RowMajorBit)> ConstTranslationPart
Definition: Transform.h:242
Eigen::Transform::EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF_VECTORIZABLE_FIXED_SIZE
EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF_VECTORIZABLE_FIXED_SIZE(_Scalar, _Dim==Dynamic ? Dynamic :(_Dim+1) *(_Dim+1)) enum
Definition: Transform.h:207
Eigen::Replicate
Expression of the multiple replication of a matrix or vector.
Definition: Replicate.h:63
Eigen::Transform::data
EIGEN_DEVICE_FUNC const Scalar * data() const
Definition: Transform.h:618
Eigen::Transform::linear
EIGEN_DEVICE_FUNC LinearPart linear()
Definition: Transform.h:396
Eigen::Projective
@ Projective
Definition: Constants.h:463
Eigen::Matrix::coeffRef
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar & coeffRef(Index rowId, Index colId)
Definition: PlainObjectBase.h:183
Eigen::Transform::TranslationType
Translation< Scalar, Dim > TranslationType
Definition: Transform.h:244
Eigen::Transform::operator()
EIGEN_DEVICE_FUNC Scalar operator()(Index row, Index col) const
Definition: Transform.h:383
Eigen::Transform::cast
EIGEN_DEVICE_FUNC internal::cast_return_type< Transform, Transform< NewScalarType, Dim, Mode, Options > >::type cast() const
Definition: Transform.h:628
Eigen::JacobiSVD
Two-sided Jacobi SVD decomposition of a rectangular matrix.
Definition: JacobiSVD.h:490
Eigen::Transform::Index
Eigen::Index Index
Definition: Transform.h:218
Eigen::internal::projective_transform_inverse
Definition: Transform.h:1182
Eigen::Transform::AffinePart
internal::conditional< int(Mode)==int(AffineCompact), MatrixType &, Block< MatrixType, Dim, HDim > >::type AffinePart
Definition: Transform.h:232
Eigen::Transform::inverse
EIGEN_DEVICE_FUNC Transform inverse(TransformTraits traits=(TransformTraits) Mode) const
Definition: Transform.h:1221
Eigen::internal::traits
Definition: ForwardDeclarations.h:17
Eigen::internal::transform_left_product_impl
Definition: Transform.h:46
Eigen::Transform::translation
EIGEN_DEVICE_FUNC ConstTranslationPart translation() const
Definition: Transform.h:404
Eigen::internal::transform_right_product_impl
Definition: Transform.h:37
Eigen::Transform::TransformTimeDiagonalReturnType
Transform< Scalar, Dim, TransformTimeDiagonalMode > TransformTimeDiagonalReturnType
Definition: Transform.h:249
Eigen::internal::transform_traits
Definition: Transform.h:21
Eigen::internal::conditional
Definition: Meta.h:76
Eigen::Transform::preshear
EIGEN_DEVICE_FUNC Transform & preshear(const Scalar &sx, const Scalar &sy)
Definition: Transform.h:984
Eigen::Translation
Represents a translation transformation.
Definition: Translation.h:31
Eigen::internal::is_same
Definition: Meta.h:115
Eigen::Matrix
The matrix class, also used for vectors and row-vectors.
Definition: Matrix.h:180
Eigen::PlainObjectBase::setZero
EIGEN_DEVICE_FUNC Derived & setZero(Index size)
Definition: CwiseNullaryOp.h:535
Eigen::MatrixBase
Base class for all dense matrices, vectors, and expressions.
Definition: MatrixBase.h:50
Eigen::AffineCompact
@ AffineCompact
Definition: Constants.h:461
Eigen::internal::transform_take_affine_part
Definition: Transform.h:1256
Eigen::Transform::LinearPart
Block< MatrixType, Dim, Dim, int(Mode)==(AffineCompact) &&(Options &RowMajor)==0 > LinearPart
Definition: Transform.h:226
Eigen::Transform::Transform
EIGEN_DEVICE_FUNC Transform(const Transform< OtherScalarType, Dim, Mode, Options > &other)
Definition: Transform.h:633
Eigen::DiagonalBase
Definition: DiagonalMatrix.h:19
Eigen::Transform::operator*
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const internal::transform_right_product_impl< Transform, OtherDerived >::ResultType operator*(const EigenBase< OtherDerived > &other) const
Definition: Transform.h:435
Eigen::Transform::affine
EIGEN_DEVICE_FUNC ConstAffinePart affine() const
Definition: Transform.h:399
Eigen::NumTraits
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
Definition: NumTraits.h:213
Eigen::Transform::translation
EIGEN_DEVICE_FUNC TranslationPart translation()
Definition: Transform.h:406
Eigen::Transform::matrix
EIGEN_DEVICE_FUNC MatrixType & matrix()
Definition: Transform.h:391
Eigen::Transform::Transform
EIGEN_DEVICE_FUNC Transform()
Definition: Transform.h:259
Eigen::internal::transform_transform_product_impl
Definition: Transform.h:53
Eigen::PlainObjectBase::data
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar * data() const
Definition: PlainObjectBase.h:255
Eigen::Index
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:42
Eigen::Dense
Definition: Constants.h:503
Eigen::Transform::data
EIGEN_DEVICE_FUNC Scalar * data()
Definition: Transform.h:620