| Geometry-Primitive documentation | Contained in the Geometry-Primitive distribution. |
Geometry::Primitive::Shape - Shape Role
Geometry::Primitive::Shape is a geometric shape.
with 'Geometry::Primitive::Shape'; has 'point_end' => '
Increase the size of this shape by the amount specified. Consult the shape implementation's documentation for this works.
The end point of this shape.
The starting point of this shape.
Cory Watson <gphat@cpan.org>
You can redistribute and/or modify this code under the same terms as Perl itself.
| Geometry-Primitive documentation | Contained in the Geometry-Primitive distribution. |
package Geometry::Primitive::Shape; use Moose::Role; requires 'point_end'; requires 'point_start'; requires 'scale'; no Moose; 1; __END__