KickJava   Java API By Example, From Geeks To Geeks.

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


1
2 package org.w3c.dom.svg;
3
4 public interface SVGFESpotLightElement extends
5                SVGElement {
6   public SVGAnimatedNumber getX( );
7   public SVGAnimatedNumber getY( );
8   public SVGAnimatedNumber getZ( );
9   public SVGAnimatedNumber getPointsAtX( );
10   public SVGAnimatedNumber getPointsAtY( );
11   public SVGAnimatedNumber getPointsAtZ( );
12   public SVGAnimatedNumber getSpecularExponent( );
13   public SVGAnimatedNumber getLimitingConeAngle( );
14 }
15
Popular Tags