Home | History | Annotate | Download | only in svg

Lines Matching refs:matrix

41 SVGTransform SVGTransformList::createSVGTransformFromMatrix(const AffineTransform& matrix) const
43 return SVGSVGElement::createSVGTransformFromMatrix(matrix);
58 AffineTransform matrix;
61 matrix = getItem(i, ec).matrix() * matrix;
63 return SVGTransform(matrix);
68 // TODO: We may want to build a real transform string, instead of concatting to a matrix(...).
71 AffineTransform matrix = transform.matrix();
72 return String::format("matrix(%f %f %f %f %f %f)", matrix.a(), matrix.b(), matrix.c(), matrix.d(), matrix.e(), matrix.f());