Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / core / FPoint2DM.java @ 24154

History | View | Annotate | Download (827 Bytes)

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

    
3
/**
4
 * Punto 2D con coordenada M
5
 *
6
 * @author An�nimo ;-)
7
 */
8
public class FPoint2DM extends FPoint2D implements FShapeM {
9
        private double m;
10
        
11
        /**
12
         * Crea un nuevo FPoint2DM.
13
         *
14
         * @param x Coordenada x.
15
         * @param y Coordenada y.
16
         * @param z Coordenada z.
17
         */
18
        public FPoint2DM(double x, double y, double m) {
19
                super(x, y);
20
                this.m = m;
21
        }
22
        
23
        public double getM() {
24
                return m;
25
        }
26

    
27
        public void setM(double value) {
28
                m = value;
29
        }
30

    
31
        public double[] getMs() {
32
                // tODO Auto-generated method stub
33
                return null;
34
        }
35

    
36
        public boolean isDecreasing() {
37
                // tODO Auto-generated method stub
38
                return false;
39
        }
40

    
41
        public void setMAt(int i, double value) {
42
                // tODO Auto-generated method stub
43
                
44
        }
45

    
46
        public void revertMs(){
47
                
48
        }
49
}