X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FSet%2FRectangle.pm;h=838ff95697a039166b6a0052e97228df485a92d8;hb=6832c809e7591e1c3e2809654f814c298d28d2ef;hp=e09382abc9a4c3f1866039907522aa4957070dca;hpb=0f9d7c1a2d11bc7001fe450cb2086e67c13a39e9;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Set/Rectangle.pm b/lib/LaTeX/TikZ/Set/Rectangle.pm index e09382a..838ff95 100644 --- a/lib/LaTeX/TikZ/Set/Rectangle.pm +++ b/lib/LaTeX/TikZ/Set/Rectangle.pm @@ -9,11 +9,11 @@ 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 LaTeX::TikZ::Set::Point; @@ -24,11 +24,11 @@ use Any::Moose; =head1 RELATIONSHIPS -This class consumes the L role, and as such implements the L method. +This class consumes the L role, and as such implements the L method. =cut -with 'LaTeX::TikZ::Set::Op'; +with 'LaTeX::TikZ::Set::Path'; =head1 ATTRIBUTES @@ -92,6 +92,18 @@ sub path { $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; @@ -116,7 +128,7 @@ 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/from width height/; + for qw; my $p = $args{from}->point; $args{to} = LaTeX::TikZ::Point->new( x => $p->x + $args{width}, @@ -138,7 +150,7 @@ LaTeX::TikZ::Interface->register( __PACKAGE__->new( from => $p, - ($is_relative ? (map +($_ => $q->{$_}), qw/width height/) : (to => $q)), + ($is_relative ? (map +($_ => $q->{$_}), qw) : (to => $q)), ); }, ); @@ -146,7 +158,7 @@ LaTeX::TikZ::Interface->register( LaTeX::TikZ::Functor->default_rule( (__PACKAGE__) => sub { my ($functor, $set, @args) = @_; - $set->new(map { $_ => $set->$_->$functor(@args) } qw/from to/) + $set->new(map { $_ => $set->$_->$functor(@args) } qw) } ); @@ -154,7 +166,7 @@ __PACKAGE__->meta->make_immutable; =head1 SEE ALSO -L, L. +L, L. =head1 AUTHOR