| org.geotools.geometry.jts.LiteCoordinateSequence
LiteCoordinateSequence | public class LiteCoordinateSequence extends PackedCoordinateSequence (Code) | | author: jeichar since: 2.1.x |
LiteCoordinateSequence | public LiteCoordinateSequence(double[] coords)(Code) | | Builds a new packed coordinate sequence
Parameters: coords - |
LiteCoordinateSequence | public LiteCoordinateSequence(float[] coordinates)(Code) | | Builds a new packed coordinate sequence out of a float coordinate array
Parameters: coordinates - |
LiteCoordinateSequence | public LiteCoordinateSequence(Coordinate[] coordinates)(Code) | | Builds a new packed coordinate sequence out of a coordinate array
Parameters: coordinates - |
LiteCoordinateSequence | public LiteCoordinateSequence(int size, int dimension)(Code) | | Builds a new empty packed coordinate sequence of a given size and dimension
Parameters: size - Parameters: dimension - |
expandEnvelope | public Envelope expandEnvelope(Envelope env)(Code) | | |
getArray | public double[] getArray()(Code) | | |
getCoordinateInternal | public Coordinate getCoordinateInternal(int i)(Code) | | See Also: com.vividsolutions.jts.geom.CoordinateSequence.getCoordinate(int) |
getOrdinate | public double getOrdinate(int index, int ordinate)(Code) | | See Also: com.vividsolutions.jts.geom.CoordinateSequence.getOrdinate(intint) See Also: Beware, for performace reasons the ordinate index is not checked, if See Also: it's over dimensions you may not get an exception but a meaningless See Also: value. |
getX | public double getX(int index)(Code) | | See Also: com.vividsolutions.jts.geom.CoordinateSequence.getX(int) |
getXYArray | public double[] getXYArray()(Code) | | if this is a dimension=2 seq, then this is the same as getArray().
If its >2 dims this will make a new array with dim=2
|
getY | public double getY(int index)(Code) | | See Also: com.vividsolutions.jts.geom.CoordinateSequence.getY(int) |
setArray | public void setArray(double[] coords2)(Code) | | Parameters: coords2 - |
setOrdinate | public void setOrdinate(int index, int ordinate, double value)(Code) | | See Also: com.vividsolutions.jts.geom.PackedCoordinateSequence.setOrdinate(intintdouble) |
size | public int size()(Code) | | See Also: com.vividsolutions.jts.geom.CoordinateSequence.size |
|
|