diff options
Diffstat (limited to 'WebCore/svg/SVGTransform.cpp')
-rw-r--r-- | WebCore/svg/SVGTransform.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/WebCore/svg/SVGTransform.cpp b/WebCore/svg/SVGTransform.cpp index 86477e4..fac88bd 100644 --- a/WebCore/svg/SVGTransform.cpp +++ b/WebCore/svg/SVGTransform.cpp @@ -43,11 +43,11 @@ SVGTransform::SVGTransform(SVGTransformType type) : m_type(type) , m_angle(0) , m_center(FloatPoint()) - , m_matrix(AffineTransform()) + , m_matrix(TransformationMatrix()) { } -SVGTransform::SVGTransform(const AffineTransform& matrix) +SVGTransform::SVGTransform(const TransformationMatrix& matrix) : m_type(SVG_TRANSFORM_MATRIX) , m_angle(0) , m_matrix(matrix) @@ -68,7 +68,7 @@ SVGTransform::SVGTransformType SVGTransform::type() const return m_type; } -AffineTransform SVGTransform::matrix() const +TransformationMatrix SVGTransform::matrix() const { return m_matrix; } @@ -83,7 +83,7 @@ FloatPoint SVGTransform::rotationCenter() const return m_center; } -void SVGTransform::setMatrix(AffineTransform matrix) //const AffineTransform& matrix) +void SVGTransform::setMatrix(TransformationMatrix matrix) //const TransformationMatrix& matrix) { m_type = SVG_TRANSFORM_MATRIX; m_angle = 0; |