]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/graphics.cpp
fix bug in wxGDIPlusMatrixData::Rotate: it must take radians for coherency with docs...
[wxWidgets.git] / src / msw / graphics.cpp
index 288997c7c1fbf9f4ca2fdcaa25755ff3b3291a37..d0c3c643ba4645c564838fd01b4b466423daadfb 100644 (file)
@@ -1044,7 +1044,7 @@ void wxGDIPlusMatrixData::Scale( wxDouble xScale , wxDouble yScale )
 // add the rotation to this matrix (radians)
 void wxGDIPlusMatrixData::Rotate( wxDouble angle )
 {
-    m_matrix->Rotate( angle );
+    m_matrix->Rotate( RadToDeg(angle) );
 }
 
 //