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::geom::Point
SEE ALSO
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.