Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

NAME

Geo::Geos::Point - Implementation of Point

SYNOPSIS (class-specific methods)

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.