1 package LaTeX::TikZ::Formatter;
8 LaTeX::TikZ::Formatter - LaTeX::TikZ formatter object.
16 our $VERSION = '0.01';
20 use LaTeX::TikZ::Point;
22 use LaTeX::TikZ::Interface;
24 use LaTeX::TikZ::Tools;
27 use Any::Moose 'Util::TypeConstraints';
31 isa => enum([ qw/cm pt/ ]),
59 isa => 'LaTeX::TikZ::Point::Autocoerce',
66 my $origin = $tikz->origin;
67 if (defined $origin) {
68 my ($x, $y) = map $origin->$_, qw/x y/;
75 defined() ? "$_" : '(undef)';
76 } map($tikz->$_, qw/unit format scale width height/), $origin;
84 no warnings 'recursion';
86 Sub::Name::subname('find_mods_rec' => sub {
87 my ($set, $layers, $others) = @_;
91 next if $seen{$tag}++;
93 if ($_->isa('LaTeX::TikZ::Mod::Layer')) {
100 my @subsets = $set->isa('LaTeX::TikZ::Set::Sequence')
102 : $set->isa('LaTeX::TikZ::Set::Path')
106 $find_mods_rec->($_, $layers, $others) for @subsets;
110 Sub::Name::subname('find_mods' => sub {
113 $find_mods_rec->(@_);
122 my $seq = LaTeX::TikZ::Set::Sequence->new(
126 unless ($translate) {
127 require LaTeX::TikZ::Functor;
128 $translate = LaTeX::TikZ::Functor->new(
130 'LaTeX::TikZ::Set::Point' => sub {
131 my ($functor, $set, $v) = @_;
138 label => $set->label,
146 my $origin = $tikz->origin;
147 $seq = $seq->$translate($origin) if defined $origin;
149 my (@layers, @other_mods);
150 $find_mods->($seq, \@layers, \@other_mods);
152 my $w = $tikz->width;
153 my $h = $tikz->height;
155 if (defined $w and defined $h) {
156 require LaTeX::TikZ::Set::Rectangle;
157 $seq->clip(LaTeX::TikZ::Set::Rectangle->new(
162 $_ = $tikz->len($_) for $w, $h;
163 $canvas = ",papersize={$w,$h},body={$w,$h}";
167 "\\usepackage[pdftex,hcentering,vcentering$canvas]{geometry}",
168 "\\usepackage{tikz}",
169 "\\usetikzlibrary{patterns}",
173 push @decls, LaTeX::TikZ::Mod::Layer->declare(@layers) if @layers;
174 push @decls, $_->declare($tikz) for @other_mods;
177 "\\begin{tikzpicture}",
178 @{ $seq->draw($tikz) },
179 "\\end{tikzpicture}",
182 return \@header, \@decls, \@content;
186 my ($tikz, $len) = @_;
188 $len = 0 if LaTeX::TikZ::Tools::numeq($len, 0);
190 sprintf $tikz->format . $tikz->unit, $len * $tikz->scale;
196 $a = ($a * 180) / CORE::atan2(0, -1);
197 $a += 360 if LaTeX::TikZ::Tools::numcmp($a, 0) < 0;
200 sprintf $tikz->format, POSIX::ceil($a);
204 my ($tikz, $name, $pos) = @_;
206 my $scale = sprintf '%0.2f', $tikz->scale / 5;
208 "node[scale=$scale,$pos] {$name}";
212 my ($tikz, $width) = @_;
214 # width=1 is 0.4 points for a scale of 2.5
215 0.8 * $width * ($tikz->scale / 5);
218 LaTeX::TikZ::Interface->register(
222 __PACKAGE__->new(@_);
226 __PACKAGE__->meta->make_immutable;
230 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
232 You can contact me by mail or on C<irc.perl.org> (vincent).
236 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>.
237 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
241 You can find documentation for this module with the perldoc command.
245 =head1 COPYRIGHT & LICENSE
247 Copyright 2010 Vincent Pit, all rights reserved.
249 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
253 1; # End of LaTeX::TikZ::Formatter