summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/SVG/SVGEllipseElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWeb/SVG/SVGEllipseElement.h')
-rw-r--r--Userland/Libraries/LibWeb/SVG/SVGEllipseElement.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/SVG/SVGEllipseElement.h b/Userland/Libraries/LibWeb/SVG/SVGEllipseElement.h
index dc415967fb..6975476a07 100644
--- a/Userland/Libraries/LibWeb/SVG/SVGEllipseElement.h
+++ b/Userland/Libraries/LibWeb/SVG/SVGEllipseElement.h
@@ -6,6 +6,7 @@
#pragma once
+#include <LibWeb/SVG/SVGAnimatedLength.h>
#include <LibWeb/SVG/SVGGeometryElement.h>
namespace Web::SVG {
@@ -21,6 +22,11 @@ public:
virtual Gfx::Path& get_path() override;
+ NonnullRefPtr<SVGAnimatedLength> cx() const;
+ NonnullRefPtr<SVGAnimatedLength> cy() const;
+ NonnullRefPtr<SVGAnimatedLength> rx() const;
+ NonnullRefPtr<SVGAnimatedLength> ry() const;
+
private:
Optional<Gfx::Path> m_path;