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: Polygon.<br>
* <pre>
* polygon: consists of one or more rings (multiple outer rings).
* ring: four or more points ... closed, non-self-intersecting loop.
* interiour: clockwise order of vertices.
* same content as PolyLine.
* possible ShapeTypes:
* Polygon ( 8 ),
* PolygonZ ( 18 ),
* PolygonM ( 28 ),
* </pre>
*
* @author jrulka
*
*/
public class ShpPolygon extends ShpPolyShape {
public ShpPolygon(Type shape_type) {
super(shape_type);
}
}