1 package LaTeX::TikZ::Set::Line;
8 LaTeX::TikZ::Set::Line - A set object representing a line.
16 our $VERSION = '0.01';
18 use LaTeX::TikZ::Set::Point;
22 with 'LaTeX::TikZ::Set::Op';
26 isa => 'LaTeX::TikZ::Set::Point',
33 isa => 'LaTeX::TikZ::Set::Point',
41 $set->from->path(@_) . ' -- ' . $set->to->path(@_);
44 use LaTeX::TikZ::Interface line => sub {
47 __PACKAGE__->new(from => $_[0], to => $_[1]);
50 __PACKAGE__->meta->make_immutable;
54 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
56 You can contact me by mail or on C<irc.perl.org> (vincent).
60 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>.
61 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
65 You can find documentation for this module with the perldoc command.
69 =head1 COPYRIGHT & LICENSE
71 Copyright 2010 Vincent Pit, all rights reserved.
73 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
77 1; # End of LaTeX::TikZ::Set::Line