]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/commitdiff
Rename LT::Mod->cover to ->covers
authorVincent Pit <vince@profvince.com>
Sun, 1 Aug 2010 22:10:24 +0000 (00:10 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 1 Aug 2010 22:10:24 +0000 (00:10 +0200)
lib/LaTeX/TikZ/Mod.pm
lib/LaTeX/TikZ/Mod/Clip.pm
lib/LaTeX/TikZ/Mod/Color.pm
lib/LaTeX/TikZ/Mod/Fill.pm
lib/LaTeX/TikZ/Mod/Layer.pm
lib/LaTeX/TikZ/Mod/Pattern.pm
lib/LaTeX/TikZ/Mod/Pattern/Dots.pm
lib/LaTeX/TikZ/Mod/Pattern/Lines.pm
lib/LaTeX/TikZ/Mod/Raw.pm
lib/LaTeX/TikZ/Mod/Width.pm
lib/LaTeX/TikZ/Set.pm

index de90607ee1ac9e210b2cfd19d43aef8d28ccf721..5c907387ba71cec8d92820fe88b943f678c9db86 100644 (file)
@@ -35,11 +35,11 @@ These methods are required by the interface :
 C<tag>
 
 Returns an identifier for the mod object.
-It is used to gather mods together when calling C<cover> on them.
+It is used to gather mods together when calling C<covers> on them.
 
 =item *
 
-C<cover $mod>
+C<covers $mod>
 
 Returns true if and only if the effects of the mod C<$mod> are already ensured by the current mod object, in which case no actual TikZ code will be emitted for C<$mod>.
 Both mod objects are guaranteed to have the same C<tag>.
@@ -62,7 +62,7 @@ Returns the TikZ code that activates the current mod as a string formatted by th
 
 requires qw(
  tag
- cover
+ covers
  declare
  apply
 );
index f9d90228d96018431886455545323fc1bc7d2cd8..b61022fdf63547c6823229db69a22d644b6f8ccc 100644 (file)
@@ -29,7 +29,7 @@ use Any::Moose;
 
 =head1 RELATIONSHIPS
 
-This class consumes the L<LaTeX::TikZ::Mod> role, and as such implements the L</tag>, L</cover>, L</declare> and L</apply> methods.
+This class consumes the L<LaTeX::TikZ::Mod> role, and as such implements the L</tag>, L</covers>, L</declare> and L</apply> methods.
 
 =cut
 
@@ -63,7 +63,7 @@ my $default_formatter = LaTeX::TikZ::Formatter->new(
 
 sub tag { ref $_[0] }
 
-=head2 C<cover>
+=head2 C<covers>
 
 =cut
 
@@ -140,7 +140,7 @@ my @handlers = (
  [ 'LaTeX::TikZ::Set::Circle'    => $cover_circle    ],
 );
 
-sub cover {
+sub covers {
  my ($old, $new) = map $_->clip, @_[0, 1];
 
  for (@handlers) {
index 48e67db4688024c75406ce312392ef578a29d1b7..73676b84697477bbcb34b3bc6f32d55cf8ff28a6 100644 (file)
@@ -21,7 +21,7 @@ use Any::Moose;
 
 =head1 RELATIONSHIPS
 
-This class consumes the L<LaTeX::TikZ::Mod> role, and as such implements the L</tag>, L</cover>, L</declare> and L</apply> methods.
+This class consumes the L<LaTeX::TikZ::Mod> role, and as such implements the L</tag>, L</covers>, L</declare> and L</apply> methods.
 
 =cut
 
@@ -47,11 +47,11 @@ has 'color' => (
 
 sub tag { ref $_[0] }
 
-=head2 C<cover>
+=head2 C<covers>
 
 =cut
 
-sub cover { $_[0]->color eq $_[1]->color }
+sub covers { $_[0]->color eq $_[1]->color }
 
 =head2 C<declare>
 
index 61aef2b2bcca594266bd387b1b811237e6401ddc..cbf3369e2c21d3d61df2fd369a3c31a4f30b202a 100644 (file)
@@ -21,7 +21,7 @@ use Any::Moose;
 
 =head1 RELATIONSHIPS
 
-This class consumes the L<LaTeX::TikZ::Mod> role, and as such implements the L</tag>, L</cover>, L</declare> and L</apply> methods.
+This class consumes the L<LaTeX::TikZ::Mod> role, and as such implements the L</tag>, L</covers>, L</declare> and L</apply> methods.
 
 =cut
 
@@ -47,11 +47,11 @@ has 'color' => (
 
 sub tag { ref $_[0] }
 
-=head2 C<cover>
+=head2 C<covers>
 
 =cut
 
-sub cover { $_[0]->color eq $_[1]->color }
+sub covers { $_[0]->color eq $_[1]->color }
 
 =head2 C<declare>
 
index fda3d59559a0bd3623b9682655dadc58103eb4a7..271e0ee37454736f2d8f2951242f6ac5a5649b9f 100644 (file)
@@ -27,7 +27,7 @@ use Any::Moose 'Util::TypeConstraints';
 
 =head1 RELATIONSHIPS
 
-This class consumes the L<LaTeX::TikZ::Mod> role, and as such implements the L</tag>, L</cover>, L</declare> and L</apply> methods.
+This class consumes the L<LaTeX::TikZ::Mod> role, and as such implements the L</tag>, L</covers>, L</declare> and L</apply> methods.
 
 =cut
 
@@ -139,11 +139,11 @@ sub tag {
  ref($self) . '/' . $self->name;
 }
 
-=head2 C<cover>
+=head2 C<covers>
 
 =cut
 
-sub cover { $_[0]->name eq $_[1]->name }
+sub covers { $_[0]->name eq $_[1]->name }
 
 =head2 C<score>
 
index c3ed9c11c8a06fc014a34ffcefce726bd872c29b..bcbadad282829744425e28b19ba7e1218d0f1216 100644 (file)
@@ -21,7 +21,7 @@ use Any::Moose;
 
 =head1 RELATIONSHIPS
 
-This class consumes the L<LaTeX::TikZ::Mod> role, and as such implements the L</tag>, L</cover>, L</declare> and L</apply> methods.
+This class consumes the L<LaTeX::TikZ::Mod> role, and as such implements the L</tag>, L</covers>, L</declare> and L</apply> methods.
 
 =cut
 
@@ -74,11 +74,11 @@ my %handlers = (
 
 sub tag { ref $_[0] }
 
-=head2 C<cover>
+=head2 C<covers>
 
 =cut
 
-sub cover { 0 }
+sub covers { 0 }
 
 =head2 C<declare>
 
index 3698a2f58c0fbbe7b418577da4a85b39a952fbd4..fbecf976b516dea3362ec65fa178e202ac89f360 100644 (file)
@@ -22,7 +22,7 @@ use Any::Moose 'Util::TypeConstraints';
 
 =head1 RELATIONSHIPS
 
-This class inherits the L<LaTeX::TikZ::Mod::Pattern> class and its L<LaTeX::TikZ::Mod::Pattern/tag>, L<LaTeX::TikZ::Mod::Pattern/cover>, L<LaTeX::TikZ::Mod::Pattern/declare> and L<LaTeX::TikZ::Mod::Pattern/apply> methods.
+This class inherits the L<LaTeX::TikZ::Mod::Pattern> class and its L<LaTeX::TikZ::Mod::Pattern/tag>, L<LaTeX::TikZ::Mod::Pattern/covers>, L<LaTeX::TikZ::Mod::Pattern/declare> and L<LaTeX::TikZ::Mod::Pattern/apply> methods.
 
 =cut
 
index 10a63f49d470aec29bf0a37786e14a0048bf4873..c2272fec642a020d609b9f4dd9dc04aba7983ec8 100644 (file)
@@ -24,7 +24,7 @@ use Any::Moose 'Util::TypeConstraints';
 
 =head1 RELATIONSHIPS
 
-This class inherits the L<LaTeX::TikZ::Mod::Pattern> class and its L</tag>, L</cover>, L<LaTeX::TikZ::Mod::Pattern/declare> and L<LaTeX::TikZ::Mod::Pattern/apply> methods.
+This class inherits the L<LaTeX::TikZ::Mod::Pattern> class and its L</tag>, L</covers>, L<LaTeX::TikZ::Mod::Pattern/declare> and L<LaTeX::TikZ::Mod::Pattern/apply> methods.
 
 =cut
 
@@ -147,11 +147,11 @@ around 'BUILDARGS' => sub {
 
 sub tag { join '/', ref $_[0], $_[0]->direction }
 
-=head2 C<cover>
+=head2 C<covers>
 
 =cut
 
-sub cover {
+sub covers {
  my ($this, $other) = @_;
 
  LaTeX::TikZ::Tools::numeq($this->line_width, $other->line_width) or return 0;
index e6746107d24c493ac40e62b247e2021858d8629a..258ee75e7245356f1b0aef9f9c0a20c0a2c2748b 100644 (file)
@@ -21,7 +21,7 @@ use Any::Moose;
 
 =head1 RELATIONSHIPS
 
-This class consumes the L<LaTeX::TikZ::Mod> role, and as such implements the L</tag>, L</cover>, L</declare> and L</apply> methods.
+This class consumes the L<LaTeX::TikZ::Mod> role, and as such implements the L</tag>, L</covers>, L</declare> and L</apply> methods.
 
 =cut
 
@@ -51,11 +51,11 @@ sub tag {
  ref($self) . '/' . $self->content;
 }
 
-=head2 C<cover>
+=head2 C<covers>
 
 =cut
 
-sub cover { 0 }
+sub covers { 0 }
 
 =head2 C<declare>
 
index 58a8804faced24824db0f39df6f2c9451f6cc178..b6086e30ff39c3767dc8919b6d7901ed224101b1 100644 (file)
@@ -23,7 +23,7 @@ use Any::Moose;
 
 =head1 RELATIONSHIPS
 
-This class consumes the L<LaTeX::TikZ::Mod> role, and as such implements the L</tag>, L</cover>, L</declare> and L</apply> methods.
+This class consumes the L<LaTeX::TikZ::Mod> role, and as such implements the L</tag>, L</covers>, L</declare> and L</apply> methods.
 
 =cut
 
@@ -49,11 +49,11 @@ has 'width' => (
 
 sub tag { ref $_[0] }
 
-=head2 C<cover>
+=head2 C<covers>
 
 =cut
 
-sub cover { LaTeX::TikZ::Tools::numeq($_[0]->width, $_[1]->width) }
+sub covers { LaTeX::TikZ::Tools::numeq($_[0]->width, $_[1]->width) }
 
 =head2 C<declare>
 
index 5a8882166c145125f092d157f6dc6b2c6c3b2614..ab66433ae8322bb72b64888d03dae9f7e739311a 100644 (file)
@@ -111,7 +111,7 @@ MOD:
    my $tag = $mod->tag;
    my $old = $mods{$tag} || [];
    for (@$old) {
-    next MOD if $_->[0]->cover($mod);
+    next MOD if $_->[0]->covers($mod);
    }
    push @{$mods{$tag}}, [ $mod, $last_mod++, $is_layer ];
    push @mods,          $mod;