14 lines
257 B
Java
14 lines
257 B
Java
package org.w3c.dom.svg;
|
|
|
|
public interface SVGRadialGradientElement extends SVGGradientElement {
|
|
SVGAnimatedLength getCx();
|
|
|
|
SVGAnimatedLength getCy();
|
|
|
|
SVGAnimatedLength getFx();
|
|
|
|
SVGAnimatedLength getFy();
|
|
|
|
SVGAnimatedLength getR();
|
|
}
|