]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/blob - lib/LaTeX/TikZ/Set/Raw.pm
46d8da165906ce1c86840677c679941537e3587b
[perl/modules/LaTeX-TikZ.git] / lib / LaTeX / TikZ / Set / Raw.pm
1 package LaTeX::TikZ::Set::Raw;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 LaTeX::TikZ::Set::Raw - A literal chunk of TikZ code.
9
10 =head1 VERSION
11
12 Version 0.01
13
14 =cut
15
16 our $VERSION = '0.01';
17
18 use LaTeX::TikZ::Interface;
19 use LaTeX::TikZ::Functor;
20
21 use Any::Moose;
22
23 with 'LaTeX::TikZ::Set::Op';
24
25 has 'content' => (
26  is       => 'ro',
27  isa      => 'Str',
28  required => 1,
29 );
30
31 sub path { $_[0]->content }
32
33 LaTeX::TikZ::Interface->register(
34  raw => sub {
35   shift;
36
37   __PACKAGE__->new(content => join ' ', @_);
38  },
39 );
40
41 LaTeX::TikZ::Functor->default_rule(
42  (__PACKAGE__) => sub {
43   my ($functor, $set, @args) = @_;
44   $set->new(content => $set->content);
45  }
46 );
47
48 __PACKAGE__->meta->make_immutable;
49
50 =head1 AUTHOR
51
52 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
53
54 You can contact me by mail or on C<irc.perl.org> (vincent).
55
56 =head1 BUGS
57
58 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>.
59 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
60
61 =head1 SUPPORT
62
63 You can find documentation for this module with the perldoc command.
64
65     perldoc LaTeX::TikZ
66
67 =head1 COPYRIGHT & LICENSE
68
69 Copyright 2010 Vincent Pit, all rights reserved.
70
71 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
72
73 =cut
74
75 1; # End of LaTeX::TikZ::Set::Raw