1 package LaTeX::TikZ::Set::Line;
8 LaTeX::TikZ::Set::Line - A set object representing a line.
16 our $VERSION = '0.02';
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::Path> role, and as such implements the L</path> method.
31 with 'LaTeX::TikZ::Set::Path';
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(@_);
77 sub begin { $_[0]->from->begin }
83 sub end { $_[0]->to->end }
85 LaTeX::TikZ::Interface->register(
89 __PACKAGE__->new(from => $_[0], to => $_[1]);
93 LaTeX::TikZ::Functor->default_rule(
94 (__PACKAGE__) => sub {
95 my ($functor, $set, @args) = @_;
96 $set->new(map { $_ => $set->$_->$functor(@args) } qw<from to>)
100 __PACKAGE__->meta->make_immutable;
104 L<LaTeX::TikZ>, L<LaTeX::TikZ::Set::Path>.
108 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
110 You can contact me by mail or on C<irc.perl.org> (vincent).
114 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>.
115 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
119 You can find documentation for this module with the perldoc command.
123 =head1 COPYRIGHT & LICENSE
125 Copyright 2010,2011,2012,2013,2014,2015 Vincent Pit, all rights reserved.
127 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
131 1; # End of LaTeX::TikZ::Set::Line