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