summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/graphics/transforms/RotateTransformOperation.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/graphics/transforms/RotateTransformOperation.h')
-rw-r--r--WebCore/platform/graphics/transforms/RotateTransformOperation.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/WebCore/platform/graphics/transforms/RotateTransformOperation.h b/WebCore/platform/graphics/transforms/RotateTransformOperation.h
index 699ea43..2acb002 100644
--- a/WebCore/platform/graphics/transforms/RotateTransformOperation.h
+++ b/WebCore/platform/graphics/transforms/RotateTransformOperation.h
@@ -41,6 +41,9 @@ public:
return adoptRef(new RotateTransformOperation(x, y, z, angle, type));
}
+ double x() const { return m_x; }
+ double y() const { return m_y; }
+ double z() const { return m_z; }
double angle() const { return m_angle; }
private: