Matrix 7 src/Geom.cpp Matrix::Matrix() {
Matrix 11 src/Geom.cpp Matrix::Matrix(double v11, double v12, double v13,
Matrix 20 src/Geom.cpp void Matrix::identity() {
Matrix 26 src/Geom.cpp void Matrix::translate(double tx, double ty) {
Matrix 27 src/Geom.cpp Matrix t(1, 0, tx,
Matrix 33 src/Geom.cpp void Matrix::scale(double sx, double sy) {
Matrix 34 src/Geom.cpp Matrix t(sx, 0, 0,
Matrix 40 src/Geom.cpp void Matrix::scale(double s) {
Matrix 44 src/Geom.cpp void Matrix::rotate(double a) {
Matrix 45 src/Geom.cpp Matrix t(cos(a), -sin(a), 0,
Matrix 51 src/Geom.cpp void Matrix::skewX(double a) {
Matrix 52 src/Geom.cpp Matrix t(1, tan(a), 0,
Matrix 58 src/Geom.cpp void Matrix::skewY(double a) {
Matrix 59 src/Geom.cpp Matrix t( 1, 0, 0,
Matrix 65 src/Geom.cpp Matrix& Matrix::operator*=(const Matrix &m) {
Matrix 70 src/Geom.cpp Matrix Matrix::operator*(const Matrix &m) {
Matrix 71 src/Geom.cpp return Matrix(values[0][0] * m.values[0][0] + values[0][1] * m.values[1][0] + values[0][2] * m.values[2][0],
Matrix 82 src/Geom.cpp double Matrix::getValue(int row, int col) {
Matrix 90 src/Geom.cpp void Matrix::setXMLProps(xmlNodePtr node) {
Matrix 11 src/Geom.h class Matrix {
Matrix 13 src/Geom.h Matrix();
Matrix 14 src/Geom.h Matrix(double v11, double v12, double v13,
Matrix 30 src/Geom.h Matrix& operator*=(const Matrix &m);
Matrix 31 src/Geom.h Matrix operator*(const Matrix &m);
Matrix 87 src/swft/SVGGradient.cpp void SVGGradient::writeCommonXML(xmlNodePtr parentNode, Matrix& m, bool hasModes) {
Matrix 124 src/swft/SVGGradient.cpp Matrix m;
Matrix 195 src/swft/SVGGradient.cpp Matrix m;
Matrix 37 src/swft/SVGGradient.h void writeCommonXML(xmlNodePtr node, Matrix& m, bool hasModes);
Matrix 40 src/swft/SVGGradient.h Matrix transform;
Matrix 13 src/swft/SVGTransformParser.cpp Matrix m;
Matrix 22 src/swft/SVGTransformParser.cpp Matrix t = Matrix(p[0], p[2], p[4] * 20,
Matrix 20 src/swft/SVGTransformParser.h Matrix getMatrix() { return transformMatrix; }
Matrix 24 src/swft/SVGTransformParser.h Matrix transformMatrix;