]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/affinematrix2dbase.h
Don't look for catalogs in AddCatalogLookupPathPrefix() path directly.
[wxWidgets.git] / interface / wx / affinematrix2dbase.h
index 630cbc87406c38eb3887390215b15b187f4bffcd..0d18095ce95f3c1562dd16f468abc5a3b3d389b2 100644 (file)
@@ -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.