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

NAME

Geo::Geos::Point - Implementation of Point

SYNOPSIS (class-specific methods)

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

    my $gf = Geo::Geos::GeometryFactory::create();
    my $c = Geo::Geos::Coordinate->new(1,2);

    my $p = $gf->createPoint($c);   # => isa 'Geo::Geos::Point'
    $gf->createPoint($c);           # => isa 'Geo::Geos::Puntal'

    $p->getX;   # => 1
    $p->getY;   # => 2

    $p->reverse;    # => isa 'Geo::Geos::Geometry'

DESCRIPTION

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

SEE ALSO (C++ classes docs)

GEOS C++ Library

geos::geom::Point

SEE ALSO

Geo::Geos

Geo::Geos::Geometry

Geo::Geos::GeometryFactory

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.