1 package LaTeX::TikZ::Formatter;
8 LaTeX::TikZ::Formatter - LaTeX::TikZ formatter object.
16 our $VERSION = '0.01';
20 use LaTeX::TikZ::Tools;
23 use Any::Moose 'Util::TypeConstraints';
27 isa => enum([ qw/cm pt/ ]),
55 does => 'Maybe[LaTeX::TikZ::Point]',
60 no warnings 'recursion';
62 Sub::Name::subname('find_mods' => sub {
63 my ($set, $layers, $others) = @_;
66 if ($_->isa('LaTeX::TikZ::Mod::Layer')) {
73 my @subsets = $set->isa('LaTeX::TikZ::Set::Sequence')
75 : $set->isa('LaTeX::TikZ::Set::Path')
79 $find_mods->($_, $layers, $others) for @subsets;
86 my $seq = LaTeX::TikZ::Set::Sequence->new(
90 my (@layers, @other_mods);
91 $find_mods->($seq, \@layers, \@other_mods);
93 my $o = $tikz->origin;
94 $seq = $seq->translate($o) if defined $o;
97 my $h = $tikz->height;
99 if (defined $w and defined $h) {
100 require LaTeX::TikZ::Set::Rectangle;
101 $seq->clip(LaTeX::TikZ::Set::Rectangle->new(
106 $_ = $tikz->len($_) for $w, $h;
107 $canvas = ",papersize={$w,$h},body={$w,$h}";
111 "\\usepackage[pdftex,hcentering,vcentering$canvas]{geometry}",
112 "\\usepackage{tikz}",
113 "\\usetikzlibrary{patterns}",
117 push @decls, LaTeX::TikZ::Mod::Layer->declare(@layers) if @layers;
118 push @decls, $_->declare($tikz) for @other_mods;
121 "\\begin{tikzpicture}",
122 @{ $seq->draw($tikz) },
123 "\\end{tikzpicture}",
126 return \@header, \@decls, \@content;
130 my ($tikz, $len) = @_;
132 $len = 0 if LaTeX::TikZ::Tools::numeq($len, 0);
134 sprintf $tikz->format . $tikz->unit, $len * $tikz->scale;
140 $a = ($a * 180) / CORE::atan2(0, -1);
141 $a += 360 if LaTeX::TikZ::Tools::numcmp($a, 0) < 0;
144 sprintf $tikz->format, POSIX::ceil($a);
148 my ($tikz, $name, $pos) = @_;
150 my $scale = sprintf '%0.2f', $tikz->scale / 5;
152 "node[scale=$scale,$pos] {\$$name\$}";
156 my ($tikz, $width) = @_;
158 # width=1 is 0.4 points for a scale of 2.5
159 0.8 * $width * ($tikz->scale / 5);
162 use LaTeX::TikZ::Interface formatter => sub {
165 __PACKAGE__->new(@_);
168 __PACKAGE__->meta->make_immutable;
172 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
174 You can contact me by mail or on C<irc.perl.org> (vincent).
178 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>.
179 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
183 You can find documentation for this module with the perldoc command.
187 =head1 COPYRIGHT & LICENSE
189 Copyright 2010 Vincent Pit, all rights reserved.
191 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
195 1; # End of LaTeX::TikZ::Formatter