The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Geo::Geos::Polygon - Represents a linear polygon, which may include holes.

SYNOPSIS (class-specific methods)

    use Geo::Geos::Coordinate;
    use Geo::Geos::GeometryFactory;

    my $gf = Geo::Geos::GeometryFactory::create();
    my $c1 = Geo::Geos::Coordinate->new(1,2);
    my $c2 = Geo::Geos::Coordinate->new(5,2);
    my $c3 = Geo::Geos::Coordinate->new(5,0);
    my $c4 = Geo::Geos::Coordinate->new(1,0);

    my $lr = $gf->createLinearRing([$c1, $c2, $c3, $c4, $c1], 2);
    ok $lr;

    my $p = $gf->createPolygon($lr);    # => isa 'Geo::Geos::Polygon'
    $gf->createPolygon($lr);            # => isa 'Geo::Geos::Polygonal'

    $p->getNumInteriorRing;     # => 1;
    $p->getInteriorRingN(0);    # => isa 'Geo::Geos::LinearRing'
    $p->getExteriorRing;        # => isa 'Geo::Geos::LinearRing'

DESCRIPTION

See methods in the base class Geo::Geos::Geometry.

SEE ALSO (C++ classes docs)

GEOS C++ Library

geos::geom::Polygon

SEE ALSO

Geo::Geos

Geo::Geos::Geometry

Geo::Geos::GeometryFactory

Geo::Geos::LinearRing

AUTHOR

Ivan Baidakou <i.baydakov@crazypanda.ru>, Crazy Panda, CP Decision LTD

LICENSE

You may distribute this code under the same terms as Perl itself.