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;
20 use LaTeX::TikZ::Interface;
21 use LaTeX::TikZ::Functor;
27 This class consumes the L<LaTeX::TikZ::Set::Op> role, and as such implements the L</path> method.
31 with 'LaTeX::TikZ::Set::Op';
37 The first corner of the rectangle, as a L<LaTeX::TikZ::Set::Point> object.
43 isa => 'LaTeX::TikZ::Set::Point',
50 The opposite endpoint of the rectangle, also as a L<LaTeX::TikZ::Set::Point> object.
56 isa => 'LaTeX::TikZ::Set::Point',
63 The algebraic width of the rectangle.
74 The algebraic height of the rectangle.
92 $set->from->path(@_) . ' rectangle ' . $set->to->path(@_);
95 my $meta = __PACKAGE__->meta;
96 my $tc1 = $meta->find_attribute_by_name('from')->type_constraint;
97 my $tc2 = $meta->find_attribute_by_name('to')->type_constraint;
99 around 'BUILDARGS' => sub {
103 if (@_ == 2 and $tc1->check($_[0]) and $tc2->check($_[1])) {
104 my ($from, $to) = @_;
108 width => $to->x - $from->x,
109 height => $to->y - $from->y,
113 if (not exists $args{to} and exists $args{from}) {
114 confess(<<' MSG') unless exists $args{width} and exists $args{height};
115 Attributes 'width' and 'height' are required when 'to' was not given
117 $args{from} = $tc1->coerce($args{from});
118 $meta->find_attribute_by_name($_)->type_constraint->assert_valid($args{$_})
119 for qw/from width height/;
120 my $p = $args{from}->point;
121 $args{to} = LaTeX::TikZ::Point->new(
122 x => $p->x + $args{width},
123 y => $p->y + $args{height},
132 LaTeX::TikZ::Interface->register(
137 my $is_relative = !blessed($q) && ref($q) eq 'HASH';
141 ($is_relative ? (map +($_ => $q->{$_}), qw/width height/) : (to => $q)),
146 LaTeX::TikZ::Functor->default_rule(
147 (__PACKAGE__) => sub {
148 my ($functor, $set, @args) = @_;
149 $set->new(map { $_ => $set->$_->$functor(@args) } qw/from to/)
153 __PACKAGE__->meta->make_immutable;
157 L<LaTeX::TikZ>, L<LaTeX::TikZ::Set::Op>.
161 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
163 You can contact me by mail or on C<irc.perl.org> (vincent).
167 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>.
168 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
172 You can find documentation for this module with the perldoc command.
176 =head1 COPYRIGHT & LICENSE
178 Copyright 2010 Vincent Pit, all rights reserved.
180 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
184 1; # End of LaTeX::TikZ::Set::Rectangle