X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FRectangle.pm;h=8841b1b0efc93c3a50c7733590be501dabfc80ef;hb=062ab95259610ce39ace60365b659d6113420ce7;hp=88af295a570f21ec08cab917a3044279e7f7595d;hpb=5adf00c880491bac3bd793a07431cf161c03643f;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Set/Rectangle.pm b/lib/LaTeX/TikZ/Set/Rectangle.pm index 88af295..8841b1b 100644 --- a/lib/LaTeX/TikZ/Set/Rectangle.pm +++ b/lib/LaTeX/TikZ/Set/Rectangle.pm @@ -9,67 +9,131 @@ LaTeX::TikZ::Set::Rectangle - A set object representing a rectangle. =head1 VERSION -Version 0.01 +Version 0.02 =cut -our $VERSION = '0.01'; +our $VERSION = '0.02'; -use Any::Moose; +use LaTeX::TikZ::Set::Point; -with 'LaTeX::TikZ::Set::Op'; +use LaTeX::TikZ::Interface; +use LaTeX::TikZ::Functor; + +use Mouse; + +=head1 RELATIONSHIPS + +This class consumes the L role, and as such implements the L method. + +=cut + +with 'LaTeX::TikZ::Set::Path'; + +=head1 ATTRIBUTES + +=head2 C + +The first corner of the rectangle, as a L object. + +=cut has 'from' => ( is => 'ro', - does => 'LaTeX::TikZ::Point', + isa => 'LaTeX::TikZ::Set::Point', required => 1, + coerce => 1, ); +=head2 C + +The opposite endpoint of the rectangle, also as a L object. + +=cut + has 'to' => ( is => 'ro', - does => 'LaTeX::TikZ::Point', + isa => 'LaTeX::TikZ::Set::Point', required => 1, + coerce => 1, ); +=head2 C + +The algebraic width of the rectangle. + +=cut + has 'width' => ( is => 'ro', isa => 'Num', ); +=head2 C + +The algebraic height of the rectangle. + +=cut + has 'height' => ( is => 'ro', isa => 'Num', ); +=head1 METHODS + +=head2 C + +=cut + sub path { my $set = shift; $set->from->path(@_) . ' rectangle ' . $set->to->path(@_); } +=head2 C + +=cut + +sub begin { $_[0]->from->begin } + +=head2 C + +=cut + +sub end { $_[0]->to->end } + +my $meta = __PACKAGE__->meta; +my $tc1 = $meta->find_attribute_by_name('from')->type_constraint; +my $tc2 = $meta->find_attribute_by_name('to')->type_constraint; + around 'BUILDARGS' => sub { my $orig = shift; my $class = shift; - my $meta = __PACKAGE__->meta; - my $tc1 = $meta->find_attribute_by_name('from')->type_constraint; - my $tc2 = $meta->find_attribute_by_name('to')->type_constraint; - if (@_ == 2 and $tc1->check($_[0]) and $tc2->check($_[1])) { + my ($from, $to) = @_; @_ = ( - from => $_[0], - to => $_[1], + from => $from, + to => $to, + width => $to->x - $from->x, + height => $to->y - $from->y, ); } else { my %args = @_; - if (not exists $args{to} - and exists $args{from} and $tc1->check($args{from})) { + if (not exists $args{to} and exists $args{from}) { confess(<<' MSG') unless exists $args{width} and exists $args{height}; Attributes 'width' and 'height' are required when 'to' was not given MSG + $args{from} = $tc1->coerce($args{from}); $meta->find_attribute_by_name($_)->type_constraint->assert_valid($args{$_}) - for qw/width height/; - $args{to} = $args{from}->translate($args{width}, $args{height}); + for qw; + my $p = $args{from}->point; + $args{to} = LaTeX::TikZ::Point->new( + x => $p->x + $args{width}, + y => $p->y + $args{height}, + ); @_ = %args; } } @@ -77,20 +141,33 @@ Attributes 'width' and 'height' are required when 'to' was not given $class->$orig(@_); }; -use LaTeX::TikZ::Interface rectangle => sub { - shift; - my ($p, $q) = @_; +LaTeX::TikZ::Interface->register( + rectangle => sub { + shift; + my ($p, $q) = @_; - my $is_relative = !blessed($q) && ref($q) eq 'ARRAY'; + my $is_relative = !blessed($q) && ref($q) eq 'HASH'; - __PACKAGE__->new( - from => $p, - ($is_relative ? (width => $q->[0], height => $q->[1]) : (to => $q)), - ); -}; + __PACKAGE__->new( + from => $p, + ($is_relative ? (map +($_ => $q->{$_}), qw) : (to => $q)), + ); + }, +); + +LaTeX::TikZ::Functor->default_rule( + (__PACKAGE__) => sub { + my ($functor, $set, @args) = @_; + $set->new(map { $_ => $set->$_->$functor(@args) } qw) + } +); __PACKAGE__->meta->make_immutable; +=head1 SEE ALSO + +L, L. + =head1 AUTHOR Vincent Pit, C<< >>, L. @@ -110,7 +187,7 @@ You can find documentation for this module with the perldoc command. =head1 COPYRIGHT & LICENSE -Copyright 2010 Vincent Pit, all rights reserved. +Copyright 2010,2011,2012,2013,2014,2015 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.