8 LaTeX::TikZ - Perl object model for generating PGF/TikZ code.
16 our $VERSION = '0.01';
18 use LaTeX::TikZ::Interface;
25 $name = 'Tikz' unless defined $name;
26 unless ($name =~ /^[a-z_][a-z0-9_]*$/i) {
28 Carp::confess('Invalid name');
32 my $const = sub () { 'LaTeX::TikZ::Interface' };
35 *{$pkg . '::' . $name} = $const;
38 LaTeX::TikZ::Interface->load;
45 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
47 You can contact me by mail or on C<irc.perl.org> (vincent).
51 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>.
52 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
56 You can find documentation for this module with the perldoc command.
60 =head1 COPYRIGHT & LICENSE
62 Copyright 2010 Vincent Pit, all rights reserved.
64 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
68 1; # End of LaTeX::TikZ