Statistics
| Revision:

gvsig-3d / 2.1 / trunk / org.gvsig.view3d / org.gvsig.view3d.vector / org.gvsig.view3d.vector.lib / org.gvsig.view3d.vector.lib.api / src / main / java / org / gvsig / view3d / vector / lib / api / VectorExtrusionLoaderParameters.java @ 761

History | View | Annotate | Download (1.03 KB)

1
package org.gvsig.view3d.vector.lib.api;
2

    
3
/**
4
 * 
5
 * @author <a href="mailto:lmarques@disid.com">Lluis Marques</a>
6
 *
7
 */
8
public interface VectorExtrusionLoaderParameters extends VectorLoaderParameters {
9

    
10
    public static final String NAME = "VectorExtrusionLoaderParameters";
11

    
12
    public static final String FACTORY_NAME = "VectorExtrusionLoaderParametersFactory";
13

    
14
    /**
15
     * Gets name of height field used to set height of extruded features.
16
     * 
17
     * @return
18
     */
19
    public String getHeightField();
20

    
21
    /**
22
     * Sets name of height field used to set height of extruded features.
23
     * 
24
     * @param heightField
25
     *            the specific height field
26
     */
27
    public void setHeightField(String heightField);
28

    
29
    /**
30
     * Gets vertical exaggeration
31
     * 
32
     * @return
33
     */
34
    public double getVerticalExaggeration();
35

    
36
    /**
37
     * Sets the specific vertical exaggeration to this properties
38
     * 
39
     * @param verticalExaggeration
40
     */
41
    public void setVerticalExaggeration(double verticalExaggeration);
42
}