package pl.wat.ms4ds.terrain.osmshp;
/**
* Shape: Polygon.
*
* 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 ), ** * @author jrulka * */ public class ShpPolygon extends ShpPolyShape { public ShpPolygon(Type shape_type) { super(shape_type); } }