Revision 42307 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.geometry/org.gvsig.fmap.geometry.jts/src/main/java/org/gvsig/fmap/geom/jts/primitive/curve/spline/BaseSpline3DM.java

View differences:

BaseSpline3DM.java
63 63
    private static final long serialVersionUID = -5436087623278868159L;
64 64

  
65 65

  
66
//    /**
67
//     * @param subtype
68
//     */
69
//    public BaseSpline3DM() {
70
//        super(Geometry.SUBTYPES.GEOM3DM);
71
//        this.coordinates = new ArrayListCoordinateSequence(new ArrayList<Coordinate>());
72
//    }
73

  
74 66
    /**
75 67
     * @param polygon
76 68
     */
......
79 71
        this.coordinates = new ArrayListCoordinateSequence(new ArrayList<Coordinate>());
80 72
    }
81 73

  
82
//    /**
83
//     * @param subtype
84
//     * @param coordinates
85
//     * @param aVertex
86
//     */
87
//    public BaseSpline3DM(Coordinate[] coordinates) {
88
//        this();
89
//        this.coordinates = new ArrayListCoordinateSequence(new ReadOnlyCoordinates(coordinates));
90
//        if (coordinates.length < 1) {
91
//            anyVertex = new Point3DM(0, 0, 0, 0);
92
//        } else {
93
//            Coordinate coordinate = coordinates[0];
94
//            anyVertex = new Point3DM(coordinate.x, coordinate.y, coordinate.z, coordinate.getOrdinate(CoordinateSequence.M));
95
//        }
96
//    }
97

  
98

  
99 74
    /**
100 75
     * @param subtype
101 76
     * @param coordinates

Also available in: Unified diff