1 package LaTeX::TikZ::Set::Rectangle;
8 LaTeX::TikZ::Set::Rectangle - A set object representing a rectangle.
16 our $VERSION = '0.01';
18 use LaTeX::TikZ::Set::Point;
22 with 'LaTeX::TikZ::Set::Op';
26 isa => 'LaTeX::TikZ::Set::Point',
33 isa => 'LaTeX::TikZ::Set::Point',
51 $set->from->path(@_) . ' rectangle ' . $set->to->path(@_);
54 my $meta = __PACKAGE__->meta;
55 my $tc1 = $meta->find_attribute_by_name('from')->type_constraint;
56 my $tc2 = $meta->find_attribute_by_name('to')->type_constraint;
58 around 'BUILDARGS' => sub {
62 if (@_ == 2 and $tc1->check($_[0]) and $tc2->check($_[1])) {
69 if (not exists $args{to} and exists $args{from}) {
70 confess(<<' MSG') unless exists $args{width} and exists $args{height};
71 Attributes 'width' and 'height' are required when 'to' was not given
73 $args{from} = $tc1->coerce($args{from});
74 $meta->find_attribute_by_name($_)->type_constraint->assert_valid($args{$_})
75 for qw/from width height/;
76 my $p = $args{from}->point;
77 $args{to} = LaTeX::TikZ::Point->new(
78 x => $p->x + $args{width},
79 y => $p->y + $args{height},
88 use LaTeX::TikZ::Interface rectangle => sub {
92 my $is_relative = !blessed($q) && ref($q) eq 'HASH';
96 ($is_relative ? (map +($_ => $q->{$_}), qw/width height/) : (to => $q)),
100 __PACKAGE__->meta->make_immutable;
104 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
106 You can contact me by mail or on C<irc.perl.org> (vincent).
110 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>.
111 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
115 You can find documentation for this module with the perldoc command.
119 =head1 COPYRIGHT & LICENSE
121 Copyright 2010 Vincent Pit, all rights reserved.
123 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
127 1; # End of LaTeX::TikZ::Set::Rectangle