Wersja działająca. Release.
This commit is contained in:
25
src/main/java/pl/wat/ms4ds/terrain/osmshp/ShpPolyLine.java
Normal file
25
src/main/java/pl/wat/ms4ds/terrain/osmshp/ShpPolyLine.java
Normal file
@@ -0,0 +1,25 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user