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/circumference/Circumference2DZ.java

View differences:

Circumference2DZ.java
96 96
        return c;
97 97
    }
98 98

  
99
    @Override
100
    public Geometry force2DM() throws GeometryOperationNotSupportedException, GeometryOperationException {
101
        Circumference c = new Circumference2DM((Point) center.force2DM(), radius);
102
        return c;
103
    }
104
    
105
    @Override
106
    public Geometry force3D() throws GeometryOperationNotSupportedException, GeometryOperationException {
107
        Geometry c = this.cloneGeometry();
108
        return c;
109
    }
110

  
111
    @Override
112
    public Geometry force3DM() throws GeometryOperationNotSupportedException, GeometryOperationException {
113
        Circumference c = new Circumference2DZM((Point) center.force3DM(), radius);
114
        return c;
115
    }
116

  
99 117
}

Also available in: Unified diff