summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGTransform.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGTransform.cpp')
-rw-r--r--WebCore/svg/SVGTransform.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/WebCore/svg/SVGTransform.cpp b/WebCore/svg/SVGTransform.cpp
index 9fe770c..1af0cd9 100644
--- a/WebCore/svg/SVGTransform.cpp
+++ b/WebCore/svg/SVGTransform.cpp
@@ -41,11 +41,11 @@ SVGTransform::SVGTransform(SVGTransformType type)
: m_type(type)
, m_angle(0)
, m_center(FloatPoint())
- , m_matrix(TransformationMatrix())
+ , m_matrix(AffineTransform())
{
}
-SVGTransform::SVGTransform(const TransformationMatrix& matrix)
+SVGTransform::SVGTransform(const AffineTransform& matrix)
: m_type(SVG_TRANSFORM_MATRIX)
, m_angle(0)
, m_matrix(matrix)
@@ -66,7 +66,7 @@ SVGTransform::SVGTransformType SVGTransform::type() const
return m_type;
}
-TransformationMatrix SVGTransform::matrix() const
+AffineTransform SVGTransform::matrix() const
{
return m_matrix;
}
@@ -81,7 +81,7 @@ FloatPoint SVGTransform::rotationCenter() const
return m_center;
}
-void SVGTransform::setMatrix(TransformationMatrix matrix) //const TransformationMatrix& matrix)
+void SVGTransform::setMatrix(AffineTransform matrix)
{
m_type = SVG_TRANSFORM_MATRIX;
m_angle = 0;
@@ -149,6 +149,5 @@ void SVGTransform::setSkewY(float angle)
m_matrix.skewY(angle);
}
-// vim:ts=4:noet
#endif // ENABLE(SVG)