SVGCircleElement.idl 399 B

12345678910
  1. #import <SVG/SVGAnimatedLength.idl>
  2. #import <SVG/SVGGeometryElement.idl>
  3. // https://svgwg.org/svg2-draft/single-page.html#shapes-InterfaceSVGCircleElement
  4. [Exposed=Window]
  5. interface SVGCircleElement : SVGGeometryElement {
  6. [SameObject] readonly attribute SVGAnimatedLength cx;
  7. [SameObject] readonly attribute SVGAnimatedLength cy;
  8. [SameObject] readonly attribute SVGAnimatedLength r;
  9. };