]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/blob - lib/LaTeX/TikZ/Set/Op.pm
First cut at the documentation
[perl/modules/LaTeX-TikZ.git] / lib / LaTeX / TikZ / Set / Op.pm
1 package LaTeX::TikZ::Set::Op;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 LaTeX::TikZ::Set::Op - A role for set objects that can be part of a path.
9
10 =head1 VERSION
11
12 Version 0.01
13
14 =cut
15
16 our $VERSION = '0.01';
17
18 =head1 DESCRIPTION
19
20 Ops are the components of a path.
21 They can be built together to form a path.
22 Thus, they are all the elements against which we can call the C<path> method.
23
24 =cut
25
26 use Any::Moose 'Role';
27
28 =head1 RELATIONSHIPS
29
30 This role consumes the L<LaTeX::TikZ::Set> role, and as such implements the L</draw> method.
31
32 =cut
33
34 with 'LaTeX::TikZ::Set';
35
36 =head1 METHODS
37
38 This method is required by the interface :
39
40 =over 4
41
42 =item *
43
44 C<path>
45
46 =back
47
48 =cut
49
50 requires qw(
51  path
52 );
53
54 =head2 C<draw>
55
56 =cut
57
58 sub draw {
59  my $set = shift;
60
61  [ "\\draw " . $set->path(@_) . ' ;' ];
62 }
63
64 =head1 AUTHOR
65
66 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
67
68 You can contact me by mail or on C<irc.perl.org> (vincent).
69
70 =head1 BUGS
71
72 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>.
73 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
74
75 =head1 SUPPORT
76
77 You can find documentation for this module with the perldoc command.
78
79     perldoc LaTeX::TikZ
80
81 =head1 COPYRIGHT & LICENSE
82
83 Copyright 2010 Vincent Pit, all rights reserved.
84
85 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
86
87 =cut
88
89 1; # End of LaTeX::TikZ::Set::Op;