X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cb9582cdf67f189bc4ba6d5f43bb09722c4c5995..92c0fc34c104c8d7c12d6a3b78ea232690fc23f4:/interface/wx/affinematrix2dbase.h diff --git a/interface/wx/affinematrix2dbase.h b/interface/wx/affinematrix2dbase.h index 630cbc8740..e7d0a6df11 100644 --- a/interface/wx/affinematrix2dbase.h +++ b/interface/wx/affinematrix2dbase.h @@ -116,7 +116,7 @@ public: //@{ /** - Check that this matrix is identical with @t. + Check that this matrix is identical with @a t. @param t The matrix compared with this. @@ -126,7 +126,7 @@ public: //@} /** - Check that this matrix differs from @t. + Check that this matrix differs from @a t. @param t The matrix compared with this. @@ -156,12 +156,12 @@ public: virtual void Scale(wxDouble xScale, wxDouble yScale) = 0; /** - Add counter clockwise rotation to this matrix. + Add clockwise rotation to this matrix. - @param ccRadians - Rotation angle in radians. + @param cRadians + Rotation angle in radians, clockwise. */ - virtual void Rotate(wxDouble ccRadians) = 0; + virtual void Rotate(wxDouble cRadians) = 0; /** Add mirroring to this matrix. @@ -181,18 +181,18 @@ public: @return The point with the transformations applied. */ - wxPoint2DDouble TransformPoint(const wxPoint2DDouble& src) const; + wxPoint2DDouble TransformPoint(const wxPoint2DDouble& p) const; void TransformPoint(wxDouble* x, wxDouble* y) const; /** - Applies the linear part of this matrix, i.e. without translation. + Applies the linear part of this matrix, i.e.\ without translation. @param p The source receiving the transformations. @return The source with the transformations applied. */ - wxPoint2DDouble TransformDistance(const wxPoint2DDouble& src) const; + wxPoint2DDouble TransformDistance(const wxPoint2DDouble& p) const; void TransformDistance(wxDouble* dx, wxDouble* dy) const; };