summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGFESpotLightElement.java
blob: 5214cb8246e5e1cf172a4fa5a98892aee428b9b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

package org.w3c.dom.svg;

public interface SVGFESpotLightElement extends 
               SVGElement {
  public SVGAnimatedNumber getX( );
  public SVGAnimatedNumber getY( );
  public SVGAnimatedNumber getZ( );
  public SVGAnimatedNumber getPointsAtX( );
  public SVGAnimatedNumber getPointsAtY( );
  public SVGAnimatedNumber getPointsAtZ( );
  public SVGAnimatedNumber getSpecularExponent( );
  public SVGAnimatedNumber getLimitingConeAngle( );
}