X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4280b8797f51e28f9c2b960e734f60f31a88325f..0bd2681966523df88ad5cf8e505b532843e58d74:/src/common/graphcmn.cpp diff --git a/src/common/graphcmn.cpp b/src/common/graphcmn.cpp index 15057e108b..4095bb95a9 100644 --- a/src/common/graphcmn.cpp +++ b/src/common/graphcmn.cpp @@ -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() {