26 lines
544 B
Java
26 lines
544 B
Java
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);
|
|
}
|
|
}
|