Revision 47432 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/Spline3DM.java

View differences:

Spline3DM.java
59 59
        super(Geometry.TYPES.SPLINE, coordinates);
60 60
    }
61 61

  
62
    public Spline3DM(ArrayListCoordinateSequence coordinates) {
63
        super(Geometry.TYPES.SPLINE, coordinates);
64
    }
65
    
62 66
    /* (non-Javadoc)
63 67
     * @see org.gvsig.fmap.geom.Geometry#cloneGeometry()
64 68
     */
......
123 127
            return false;
124 128
        }
125 129
    }
130

  
131
    @Override
132
    public Geometry force3DM() throws GeometryOperationNotSupportedException, GeometryOperationException {
133
        Geometry c = this.cloneGeometry();
134
        return c;
135
    }
126 136
}

Also available in: Unified diff