Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / core / FPolygon3D.java @ 293

History | View | Annotate | Download (439 Bytes)

1
package com.iver.cit.gvsig.fmap.core;
2

    
3

    
4

    
5
/**
6
 * Polilinea 3D.
7
 *
8
 * @author Vicente Caballero Navarro
9
 * 
10
 */
11
public class FPolygon3D extends FPolygon2D {
12
    private GeneralPathX gp = null;
13
    double[] pZ = null;
14

    
15
    /**
16
     * Crea un nuevo Polyline3D.
17
     *
18
     * @param gpx DOCUMENT ME!
19
     * @param pZ DOCUMENT ME!
20
     */
21
    public FPolygon3D(GeneralPathX gpx, double[] pZ) {
22
        super(gpx);
23
        this.pZ = pZ;
24
    }
25

    
26
}