Wersja działająca. Release.

This commit is contained in:
2026-02-06 20:16:40 +01:00
parent b8cfa7301a
commit fb7a210501
51 changed files with 1674 additions and 1783 deletions

View 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);
}
}