• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/

Lines Matching refs:wxTransformMatrix

3 // Purpose:     wxTransformMatrix class
30 wxTransformMatrix::wxTransformMatrix(void)
37 wxTransformMatrix::wxTransformMatrix(const wxTransformMatrix& mat)
43 double wxTransformMatrix::GetValue(int col, int row) const
51 void wxTransformMatrix::SetValue(int col, int row, double value)
60 void wxTransformMatrix::operator = (const wxTransformMatrix& mat)
73 bool wxTransformMatrix::operator == (const wxTransformMatrix& mat) const
90 bool wxTransformMatrix::operator != (const wxTransformMatrix& mat) const
95 double& wxTransformMatrix::operator()(int col, int row)
103 double wxTransformMatrix::operator()(int col, int row) const
112 bool wxTransformMatrix::Invert(void)
150 bool wxTransformMatrix::Identity(void)
164 bool wxTransformMatrix::Scale(double scale)
186 wxTransformMatrix& wxTransformMatrix::Scale(const double &xs, const double &ys,const double &xc, const double &yc)
234 wxTransformMatrix scale;
256 wxTransformMatrix& wxTransformMatrix::Mirror(bool x, bool y)
258 wxTransformMatrix temp;
280 bool wxTransformMatrix::Translate(double dx, double dy)
297 bool wxTransformMatrix::Rotate(double degrees)
308 wxTransformMatrix& wxTransformMatrix::Rotate(const double &degrees, const double &x, const double &y)
355 wxTransformMatrix rotate;
374 bool wxTransformMatrix::TransformPoint(double x, double y, double& tx, double& ty) const
390 // wxTransformMatrix mat = dc.GetTransformation();
397 bool wxTransformMatrix::InverseTransformPoint(double x, double y, double& tx, double& ty) const
415 wxTransformMatrix& wxTransformMatrix::operator*=(const double& t)
424 wxTransformMatrix& wxTransformMatrix::operator/=(const double& t)
433 wxTransformMatrix& wxTransformMatrix::operator+=(const wxTransformMatrix& mat)
442 wxTransformMatrix& wxTransformMatrix::operator-=(const wxTransformMatrix& mat)
451 wxTransformMatrix& wxTransformMatrix::operator*=(const wxTransformMatrix& mat)
463 wxTransformMatrix result;
483 wxTransformMatrix wxTransformMatrix::operator*(const double& t) const
485 wxTransformMatrix result = *this;
491 wxTransformMatrix wxTransformMatrix::operator/(const double& t) const
493 wxTransformMatrix result = *this;
500 wxTransformMatrix wxTransformMatrix::operator+(const wxTransformMatrix& m) const
502 wxTransformMatrix result = *this;
508 wxTransformMatrix wxTransformMatrix::operator-(const wxTransformMatrix& m) const
510 wxTransformMatrix result = *this;
517 wxTransformMatrix wxTransformMatrix::operator*(const wxTransformMatrix& m) const
519 wxTransformMatrix result = *this;
526 wxTransformMatrix wxTransformMatrix::operator-() const
528 wxTransformMatrix result = *this;
549 double wxTransformMatrix::Get_scaleX()
565 double wxTransformMatrix::Get_scaleY()
583 double wxTransformMatrix::GetRotation()
595 void wxTransformMatrix::SetRotation(double rotation)