Lines Matching refs:B2DHomMatrix
42 namespace { struct IdentityMatrix : public rtl::Static< B2DHomMatrix::ImplType,
45 B2DHomMatrix::B2DHomMatrix() : in B2DHomMatrix() function in basegfx::B2DHomMatrix
50 B2DHomMatrix::B2DHomMatrix(const B2DHomMatrix& rMat) : in B2DHomMatrix() function in basegfx::B2DHomMatrix
55 B2DHomMatrix::~B2DHomMatrix() in ~B2DHomMatrix()
59 …B2DHomMatrix::B2DHomMatrix(double f_0x0, double f_0x1, double f_0x2, double f_1x0, double f_1x1, d… in B2DHomMatrix() function in basegfx::B2DHomMatrix
70 B2DHomMatrix& B2DHomMatrix::operator=(const B2DHomMatrix& rMat) in operator =()
76 void B2DHomMatrix::makeUnique() in makeUnique()
81 double B2DHomMatrix::get(sal_uInt16 nRow, sal_uInt16 nColumn) const in get()
86 void B2DHomMatrix::set(sal_uInt16 nRow, sal_uInt16 nColumn, double fValue) in set()
91 …void B2DHomMatrix::set3x2(double f_0x0, double f_0x1, double f_0x2, double f_1x0, double f_1x1, do… in set3x2()
101 bool B2DHomMatrix::isLastLineDefault() const in isLastLineDefault()
106 bool B2DHomMatrix::isIdentity() const in isIdentity()
114 void B2DHomMatrix::identity() in identity()
119 bool B2DHomMatrix::isInvertible() const in isInvertible()
124 bool B2DHomMatrix::invert() in invert()
142 bool B2DHomMatrix::isNormalized() const in isNormalized()
147 void B2DHomMatrix::normalize() in normalize()
149 if(!const_cast<const B2DHomMatrix*>(this)->mpImpl->isNormalized()) in normalize()
153 double B2DHomMatrix::determinant() const in determinant()
158 double B2DHomMatrix::trace() const in trace()
163 void B2DHomMatrix::transpose() in transpose()
168 B2DHomMatrix& B2DHomMatrix::operator+=(const B2DHomMatrix& rMat) in operator +=()
174 B2DHomMatrix& B2DHomMatrix::operator-=(const B2DHomMatrix& rMat) in operator -=()
180 B2DHomMatrix& B2DHomMatrix::operator*=(double fValue) in operator *=()
190 B2DHomMatrix& B2DHomMatrix::operator/=(double fValue) in operator /=()
200 B2DHomMatrix& B2DHomMatrix::operator*=(const B2DHomMatrix& rMat) in operator *=()
208 bool B2DHomMatrix::operator==(const B2DHomMatrix& rMat) const in operator ==()
216 bool B2DHomMatrix::operator!=(const B2DHomMatrix& rMat) const in operator !=()
221 void B2DHomMatrix::rotate(double fRadiant) in rotate()
240 void B2DHomMatrix::translate(double fX, double fY) in translate()
253 void B2DHomMatrix::scale(double fX, double fY) in scale()
268 void B2DHomMatrix::shearX(double fSx) in shearX()
281 void B2DHomMatrix::shearY(double fSy) in shearY()
301 …bool B2DHomMatrix::decompose(B2DTuple& rScale, B2DTuple& rTranslate, double& rRotate, double& rShe… in decompose()