1 package LaTeX::TikZ::Set::Polyline;
8 LaTeX::TikZ::Set::Polyline - A set object representing a line.
16 our $VERSION = '0.01';
18 use LaTeX::TikZ::Set::Point;
21 use Any::Moose 'Util::TypeConstraints';
23 with 'LaTeX::TikZ::Set::Op';
25 subtype 'LaTeX::TikZ::Set::Polyline::Vertices'
26 => as 'ArrayRef[LaTeX::TikZ::Set::Point]'
28 => message { 'at least two LaTeX::TikZ::Set::Point objects are needed in order to build a polyline' };
30 coerce 'LaTeX::TikZ::Set::Polyline::Vertices'
31 => from 'ArrayRef[Any]'
32 => via { [ map LaTeX::TikZ::Set::Point->new(point => $_), @$_ ] };
36 isa => 'LaTeX::TikZ::Set::Polyline::Vertices',
42 sub points { @{$_[0]->_points} }
53 join ' -- ', map($_->path(@_), $set->points),
54 ($set->closed ? 'cycle' : ());
57 use LaTeX::TikZ::Interface polyline => sub {
60 __PACKAGE__->new(points => \@_);
63 use LaTeX::TikZ::Interface closed_polyline => sub {
66 __PACKAGE__->new(points => \@_, closed => 1);
69 __PACKAGE__->meta->make_immutable;
73 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
75 You can contact me by mail or on C<irc.perl.org> (vincent).
79 Please report any bugs or feature requests to C<bug-latex-tikz at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=LaTeX-TikZ>.
80 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
84 You can find documentation for this module with the perldoc command.
88 =head1 COPYRIGHT & LICENSE
90 Copyright 2010 Vincent Pit, all rights reserved.
92 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
96 1; # End of LaTeX::TikZ::Set::Polyline