Cory Watson > Geometry-Primitive-0.16 > Geometry::Primitive::Rectangle

Download:
Geometry-Primitive-0.16.tar.gz

Dependencies

Annotate this POD

CPAN RT

New  1
Open  0
View Bugs
Report a bug
Source   Latest Release: Geometry-Primitive-0.19

NAME ^

Geometry::Primitive::Rectangle - 4 sided polygon

DESCRIPTION ^

Geometry::Primitive::Rectangle a space defined by a point, a width and a height.

SYNOPSIS ^

  use Geometry::Primitive::Rectangle;

  my $poly = Geometry::Primitive::Rectangle->new();
  $poly->add_point($point1);
  $poly->height(100);
  $poly->width(100);

METHODS ^

new

Creates a new Geometry::Primitive::Rectangle

area

Returns the area of this rectangle.

get_points

Get the points that make up this Rectangle.

origin

Set/Get the origin of this rectangle.

point_end

Get the end point. Returns the origin. Provided for Shape role.

point_start

Get the start point. Returns the origin. Provided for Shape role.

scale ($amount)

Scales the hieght and width of this rectangle by the amount specified.

width

Add a point to this Rectangle.

height

AUTHOR ^

Cory Watson <gphat@cpan.org>

COPYRIGHT & LICENSE ^

You can redistribute and/or modify this code under the same terms as Perl itself.