KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3c > dom > svg > SVGFETurbulenceElement


1
2 package org.w3c.dom.svg;
3
4 public interface SVGFETurbulenceElement extends
5                SVGElement,
6                SVGFilterPrimitiveStandardAttributes {
7   // Turbulence Types
8
public static final short SVG_TURBULENCE_TYPE_UNKNOWN = 0;
9   public static final short SVG_TURBULENCE_TYPE_FRACTALNOISE = 1;
10   public static final short SVG_TURBULENCE_TYPE_TURBULENCE = 2;
11   // Stitch Options
12
public static final short SVG_STITCHTYPE_UNKNOWN = 0;
13   public static final short SVG_STITCHTYPE_STITCH = 1;
14   public static final short SVG_STITCHTYPE_NOSTITCH = 2;
15
16   public SVGAnimatedNumber getBaseFrequencyX( );
17   public SVGAnimatedNumber getBaseFrequencyY( );
18   public SVGAnimatedInteger getNumOctaves( );
19   public SVGAnimatedNumber getSeed( );
20   public SVGAnimatedEnumeration getStitchTiles( );
21   public SVGAnimatedEnumeration getType( );
22 }
23
Popular Tags