#include "a2dprec.h"
#include "wx/general/genmod.h"
#include "wx/xmlparse/genxmlpars.h"
#include "wx/wx.h"
#include "wx/artbase/afmatrix.h"
#include <math.h>
#include <ctype.h>

Go to the source code of this file.
Functions | |
| bool | operator== (const a2dAffineMatrix &a, const a2dAffineMatrix &b) |
| bool | operator!= (const a2dAffineMatrix &a, const a2dAffineMatrix &b) |
| double | wxCalculateDet (double a11, double a21, double a12, double a22) |
| Calculates the determinant of a 2 x 2 matrix. | |
| a2dAffineMatrix | operator- (const a2dAffineMatrix &a, const a2dAffineMatrix &b) |
| matrixes subtract | |
| bool | ParseCvgTransForm (a2dAffineMatrix &matrix, const wxString &str, wxString &error) |
| function to parse a string in SVG/CVG format and return the resulting matrix | |
Variables | |
| a2dAffineMatrix | a2dIDENTITY_MATRIX |
| global a2dAffineMatrix to set/pass the identity matrix. | |
Copyright: 2001-2004 (C) Klaas Holwerda Chris Breeze, Julian Smart
Licence: wxWidgets licence
RCS-ID:
Definition in file afmatrix.cpp.
| a2dAffineMatrix operator- | ( | const a2dAffineMatrix & | a, | |
| const a2dAffineMatrix & | b | |||
| ) |
| bool ParseCvgTransForm | ( | a2dAffineMatrix & | matrix, | |
| const wxString & | str, | |||
| wxString & | error | |||
| ) |
function to parse a string in SVG/CVG format and return the resulting matrix
| matrix | the resulting matrix. | |
| str | the string to parse | |
| error | error returned if not right |
Definition at line 890 of file afmatrix.cpp.