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;
20 use LaTeX::TikZ::Interface;
21 use LaTeX::TikZ::Functor;
27 This class consumes the L<LaTeX::TikZ::Set::Op> role, and as such implements the L</path> method.
31 with 'LaTeX::TikZ::Set::Op';
37 The first endpoint of the line, as a L<LaTeX::TikZ::Set::Point> object.
43 isa => 'LaTeX::TikZ::Set::Point',
50 The second endpoint of the line, also as a L<LaTeX::TikZ::Set::Point> object.
56 isa => 'LaTeX::TikZ::Set::Point',
70 $set->from->path(@_) . ' -- ' . $set->to->path(@_);
73 LaTeX::TikZ::Interface->register(
77 __PACKAGE__->new(from => $_[0], to => $_[1]);
81 LaTeX::TikZ::Functor->default_rule(
82 (__PACKAGE__) => sub {
83 my ($functor, $set, @args) = @_;
84 $set->new(map { $_ => $set->$_->$functor(@args) } qw/from to/)
88 __PACKAGE__->meta->make_immutable;
92 L<LaTeX::TikZ>, L<LaTeX::TikZ::Set::Op>.
96 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
98 You can contact me by mail or on C<irc.perl.org> (vincent).
102 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>.
103 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
107 You can find documentation for this module with the perldoc command.
111 =head1 COPYRIGHT & LICENSE
113 Copyright 2010 Vincent Pit, all rights reserved.
115 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
119 1; # End of LaTeX::TikZ::Set::Line