Statistics
| Revision:

svn-gvsig-desktop / 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 / line / BaseLine2D.java @ 42326

History | View | Annotate | Download (5.11 KB)

1
/* gvSIG. Desktop Geographic Information System.
2
 *
3
 * Copyright ? 2007-2015 gvSIG Association
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18
 * MA  02110-1301, USA.
19
 *
20
 * For any additional information, do not hesitate to contact us
21
 * at info AT gvsig.com, or visit our website www.gvsig.com.
22
 */
23
package org.gvsig.fmap.geom.jts.primitive.curve.line;
24

    
25
import java.util.ArrayList;
26
import java.util.Iterator;
27

    
28
import com.vividsolutions.jts.geom.Coordinate;
29

    
30
import org.gvsig.fmap.geom.Geometry;
31
import org.gvsig.fmap.geom.GeometryException;
32
import org.gvsig.fmap.geom.aggregate.MultiLine;
33
import org.gvsig.fmap.geom.aggregate.MultiPoint;
34
import org.gvsig.fmap.geom.aggregate.MultiPolygon;
35
import org.gvsig.fmap.geom.jts.aggregate.MultiLine2D;
36
import org.gvsig.fmap.geom.jts.aggregate.MultiPoint2D;
37
import org.gvsig.fmap.geom.jts.aggregate.MultiPolygon2D;
38
import org.gvsig.fmap.geom.jts.primitive.point.Point2D;
39
import org.gvsig.fmap.geom.jts.primitive.surface.polygon.Polygon2D;
40
import org.gvsig.fmap.geom.jts.util.ArrayListCoordinateSequence;
41
import org.gvsig.fmap.geom.jts.util.ReadOnlyCoordinates;
42
import org.gvsig.fmap.geom.primitive.Point;
43

    
44
/**
45
 * @author fdiaz
46
 *
47
 */
48
public abstract class BaseLine2D extends AbstractLine {
49

    
50
    /**
51
     *
52
     */
53
    private static final long serialVersionUID = -4703049397260763325L;
54

    
55
    /**
56
     * @param polygon
57
     */
58
    public BaseLine2D(int type) {
59
        super(type, Geometry.SUBTYPES.GEOM2D);
60
        this.coordinates = new ArrayListCoordinateSequence(new ArrayList<Coordinate>());
61
    }
62

    
63
    /**
64
     * @param polygon
65
     * @param coordinates
66
     */
67
    public BaseLine2D(int type, Coordinate[] coordinates) {
68
        super(type, Geometry.SUBTYPES.GEOM2D);
69
        initializeCoordinates(coordinates);
70
    }
71

    
72
    /**
73
     * @param coordinates
74
     */
75
    private void initializeCoordinates(Coordinate[] coordinates) {
76
        this.coordinates = new ArrayListCoordinateSequence(new ReadOnlyCoordinates(coordinates));
77
        if (coordinates.length < 1) {
78
            anyVertex = new Point2D(0, 0);
79
        } else {
80
            anyVertex = new Point2D(coordinates[0].x, coordinates[0].y);
81
        }
82
    }
83

    
84
    /*
85
     * (non-Javadoc)
86
     *
87
     * @see org.gvsig.fmap.geom.primitive.OrientablePrimitive#addVertex(double,
88
     * double)
89
     */
90
    public void addVertex(double x, double y) {
91
        this.addVertex(new Point2D(x, y));
92
    }
93

    
94
    /*
95
     * (non-Javadoc)
96
     *
97
     * @see org.gvsig.fmap.geom.primitive.OrientablePrimitive#addVertex(double,
98
     * double, double)
99
     */
100
    public void addVertex(double x, double y, double z) {
101
        String message = "Can't add x,y,z coordinate to Line2D.";
102
        notifyDeprecated(message);
103
        throw new UnsupportedOperationException(message);
104
    }
105

    
106
    /*
107
     * (non-Javadoc)
108
     *
109
     * @see
110
     * org.gvsig.fmap.geom.jts.primitive.curve.line.AbstractLine#fixPoint(org
111
     * .gvsig.fmap.geom.primitive.Point)
112
     */
113
    @Override
114
    protected Point fixPoint(Point point) {
115
        if (point instanceof Point2D) {
116
            return point;
117
        } else {
118
            return new Point2D(point.getX(), point.getY());
119
        }
120
    }
121

    
122

    
123
    /* (non-Javadoc)
124
     * @see org.gvsig.fmap.geom.primitive.Line#toPoints()
125
     */
126
    public MultiPoint toPoints() throws GeometryException {
127
        MultiPoint multiPoint = new MultiPoint2D();
128
        multiPoint.ensureCapacity(coordinates.size());
129
        for (Iterator<Coordinate> iterator = coordinates.iterator(); iterator.hasNext();) {
130
            Coordinate coordinate = (Coordinate) iterator.next();
131
            multiPoint.addPoint(new Point2D(coordinate));
132
        }
133
        return multiPoint;
134
    }
135

    
136
    /* (non-Javadoc)
137
     * @see org.gvsig.fmap.geom.primitive.Line#toLines()
138
     */
139
    public MultiLine toLines() throws GeometryException {
140
        MultiLine multiLine = new MultiLine2D();
141
        multiLine.addPrimitive(this);
142
        return multiLine;
143
    }
144

    
145
    /* (non-Javadoc)
146
     * @see org.gvsig.fmap.geom.primitive.Line#toPolygons()
147
     */
148
    public MultiPolygon toPolygons() throws GeometryException {
149
        MultiPolygon multiPolygon = new MultiPolygon2D();
150
        Polygon2D polygon = new Polygon2D(coordinates.toCoordinateArray());
151
        multiPolygon.addPrimitive(polygon);
152
        return multiPolygon;
153
    }
154

    
155

    
156
    /* (non-Javadoc)
157
     * @see org.gvsig.fmap.geom.primitive.OrientablePrimitive#getVertex(int)
158
     */
159
    public Point getVertex(int index) {
160
        Point2D vertex = new Point2D(this.coordinates.get(index));
161
        anyVertex = vertex;
162
        return vertex;
163
    }
164
}