summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/filter/SVGFEDistantLightElement.java
blob: 014191877066611e357e55130574f783cfef42be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * SVGFEDistantLightElement.java
 *
 * Created on April 13, 2007, 11:05 AM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.kitfox.salamander.svg.filter;

import com.kitfox.salamander.svg.basic.SVGAnimatedNumber;
import com.kitfox.salamander.svg.basic.SVGElement;

/**
 * The SVGFEDistantLightElement  interface corresponds to the 'feDistantLight' element.
 * @author kitfox
 */
public interface SVGFEDistantLightElement extends SVGElement
{
    /**
     * Corresponds to attribute azimuth on the given 'feDistantLight'  element.
     */
    public SVGAnimatedNumber getAzimuth();
    /**
     * Corresponds to attribute elevation on the given 'feDistantLight'  element.
     */
    public SVGAnimatedNumber getElevation();
}