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

package org.w3c.dom.svg;

public interface SVGFEDiffuseLightingElement extends 
               SVGElement,
               SVGFilterPrimitiveStandardAttributes {
  public SVGAnimatedString getIn1( );
  public SVGAnimatedNumber getSurfaceScale( );
  public SVGAnimatedNumber getDiffuseConstant( );
  public SVGAnimatedNumber getKernelUnitLengthX( );
  public SVGAnimatedNumber getKernelUnitLengthY( );
}