Home | History | Annotate | Download | only in Geometry

Lines Matching refs:DiagonalMatrix

28   * To represent an axis aligned scaling, use the DiagonalMatrix class.
30 * \sa Scaling(), class DiagonalMatrix, MatrixBase::asDiagonal(), class Translation, class Transform
125 static inline DiagonalMatrix<Scalar,2> Scaling(const Scalar& sx, const Scalar& sy)
126 { return DiagonalMatrix<Scalar,2>(sx, sy); }
129 static inline DiagonalMatrix<Scalar,3> Scaling(const Scalar& sx, const Scalar& sy, const Scalar& sz)
130 { return DiagonalMatrix<Scalar,3>(sx, sy, sz); }
142 typedef DiagonalMatrix<float, 2> AlignedScaling2f;
144 typedef DiagonalMatrix<double,2> AlignedScaling2d;
146 typedef DiagonalMatrix<float, 3> AlignedScaling3f;
148 typedef DiagonalMatrix<double,3> AlignedScaling3d;