]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/affinematrix2dbase.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: affinematrix2dbase.h
3 // Purpose: wxMatrix2D documentation
4 // Author: wxWidgets team
5 // Licence: wxWindows licence
6 /////////////////////////////////////////////////////////////////////////////
11 A simple container for 2x2 matrix.
13 This simple structure is used with wxAffineMatrix2D.
25 Initializes the matrix elements to the identity.
27 wxMatrix2D(wxDouble v11
= 1,
32 /// The matrix elements in the usual mathematical notation.
33 wxDouble m_11
, m_12
, m_21
, m_22
;