Geometry::Primitive::Rectangle - 4 sided polygon
Geometry::Primitive::Rectangle a space defined by a point, a width and a height.
use Geometry::Primitive::Rectangle;
my $poly = Geometry::Primitive::Rectangle->new();
$poly->add_point($point1);
$poly->height(100);
$poly->width(100);
Set/Get the height of this Rectangle.
Set/Get the origin of this rectangle.
Set/Get the width of this Rectangle.
Creates a new Geometry::Primitive::Rectangle
Returns the area of this rectangle.
Get the points that make up this Rectangle.
Get the end point. Returns the origin. Provided for Shape role.
Get the start point. Returns the origin. Provided for Shape role.
Scales the hieght and width of this rectangle by the amount specified.
Cory Watson <gphat@cpan.org>
You can redistribute and/or modify this code under the same terms as Perl
itself.