SVGRadialGradientElement.h 854 B

12345678910111213141516171819202122232425
  1. /*
  2. https://www.w3.org/TR/SVG/pservers.html#InterfaceSVGRadialGradientElement
  3. interface SVGRadialGradientElement : SVGGradientElement {
  4. [SameObject] readonly attribute SVGAnimatedLength cx;
  5. [SameObject] readonly attribute SVGAnimatedLength cy;
  6. [SameObject] readonly attribute SVGAnimatedLength r;
  7. [SameObject] readonly attribute SVGAnimatedLength fx;
  8. [SameObject] readonly attribute SVGAnimatedLength fy;
  9. [SameObject] readonly attribute SVGAnimatedLength fr;
  10. };
  11. */
  12. #import "SVGGradientElement.h"
  13. @interface SVGRadialGradientElement : SVGGradientElement
  14. @property (nonatomic, readonly) SVGLength *cx;
  15. @property (nonatomic, readonly) SVGLength *cy;
  16. @property (nonatomic, readonly) SVGLength *r;
  17. @property (nonatomic, readonly) SVGLength *fx;
  18. @property (nonatomic, readonly) SVGLength *fy;
  19. @property (nonatomic, readonly) SVGLength *fr;
  20. @end