Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / core / FMultipoint3D.java @ 266

History | View | Annotate | Download (340 Bytes)

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

    
3

    
4

    
5
/**
6
 * Multipunto 3D.
7
 *
8
 * @author Vicente Caballero Navarro
9
 * 
10
 */
11
public class FMultipoint3D extends FMultiPoint2D {
12
    double[] z = null;
13

    
14
    /**
15
     * Crea un nuevo Multipoint3D.
16
     */
17
    public FMultipoint3D(double[] x,double[] y, double[] z) {
18
            super(x,y);
19
            this.z=z;
20
    }
21

    
22
}