/* * Copyright (c) 2020, Matthew Olsson * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web::SVG { // https://svgwg.org/svg2-draft/types.html#InterfaceSVGGeometryElement class SVGGeometryElement : public SVGGraphicsElement { WEB_PLATFORM_OBJECT(SVGGeometryElement, SVGGraphicsElement); public: virtual GC::Ptr create_layout_node(GC::Ref) override; virtual Gfx::Path get_path(CSSPixelSize viewport_size) = 0; float get_total_length(); GC::Ref get_point_at_length(float distance); GC::Ref path_length(); protected: SVGGeometryElement(DOM::Document& document, DOM::QualifiedName qualified_name); virtual void initialize(JS::Realm&) override; virtual void visit_edges(Cell::Visitor&) override; private: GC::Ptr m_path_length; }; }