SVGGeometryElement.idl 290 B

1234567891011
  1. #import <Geometry/DOMPoint.idl>
  2. #import <SVG/SVGGraphicsElement.idl>
  3. // https://svgwg.org/svg2-draft/types.html#InterfaceSVGGeometryElement
  4. [Exposed=Window]
  5. interface SVGGeometryElement : SVGGraphicsElement {
  6. float getTotalLength();
  7. DOMPoint getPointAtLength(float distance);
  8. };