26 lines
570 B
Java
26 lines
570 B
Java
package pl.wat.ms4ds.terrain.osmshp;
|
|
|
|
/**
|
|
* Shape: PolyLine.<br>
|
|
* <pre>
|
|
* polyline: consists of one or more parts.
|
|
* part: connected sequence of two or more points.
|
|
* may or may not be connected to one another.
|
|
* may or may not intersect one another.
|
|
* same content as polygon.
|
|
* possible ShapeTypes:
|
|
* PolyLine ( 8 ),
|
|
* PolyLineZ ( 18 ),
|
|
* PolyLineM ( 28 ),
|
|
* </pre>
|
|
*
|
|
* @author jrulka
|
|
*
|
|
*/
|
|
public class ShpPolyLine extends ShpPolyShape {
|
|
|
|
public ShpPolyLine(Type shape_type) {
|
|
super(shape_type);
|
|
}
|
|
}
|