Help for this page
my ($x, $y) = @{ $obj->getPosition }
my $point = $obj->getPosition; do_something_with_point($point); ... # or maybe $point->[0] - possibly bad # or maybe $point->{x} - probably bad # but really $point->x is the best