X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cb9582cdf67f189bc4ba6d5f43bb09722c4c5995..36a0190ebd5bd9a7302f60f6dcd608b80574e21c:/interface/wx/affinematrix2dbase.h diff --git a/interface/wx/affinematrix2dbase.h b/interface/wx/affinematrix2dbase.h index 630cbc8740..0d18095ce9 100644 --- a/interface/wx/affinematrix2dbase.h +++ b/interface/wx/affinematrix2dbase.h @@ -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. @@ -185,7 +185,7 @@ public: 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.