Add wxGraphicsMatrix::Get
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43830 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -147,6 +147,13 @@ void wxGraphicsMatrix::Set(wxDouble a, wxDouble b, wxDouble c, wxDouble d,
|
||||
GetMatrixData()->Set(a,b,c,d,tx,ty);
|
||||
}
|
||||
|
||||
// gets the component valuess of the matrix
|
||||
void wxGraphicsMatrix::Get(wxDouble* a, wxDouble* b, wxDouble* c,
|
||||
wxDouble* d, wxDouble* tx, wxDouble* ty) const
|
||||
{
|
||||
GetMatrixData()->Get(a, b, c, d, tx, ty);
|
||||
}
|
||||
|
||||
// makes this the inverse matrix
|
||||
void wxGraphicsMatrix::Invert()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user