]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/commitdiff
Coerce Points into Set::Points
authorVincent Pit <vince@profvince.com>
Wed, 21 Jul 2010 10:33:43 +0000 (12:33 +0200)
committerVincent Pit <vince@profvince.com>
Wed, 21 Jul 2010 10:33:43 +0000 (12:33 +0200)
lib/LaTeX/TikZ/Set/Point.pm

index c4749fe66ab879f51aa426fc3b01b0201621950e..0a4911f88a80787829c5212db41d5eeb2174ae2e 100644 (file)
@@ -18,16 +18,21 @@ our $VERSION = '0.01';
 use LaTeX::TikZ::Point;
 
 use Any::Moose;
+use Any::Moose 'Util::TypeConstraints';
 
 with 'LaTeX::TikZ::Set::Op';
 
 has 'point' => (
  is       => 'ro',
does     => 'LaTeX::TikZ::Point::Autocoerce',
isa      => 'LaTeX::TikZ::Point::Autocoerce',
  required => 1,
  coerce   => 1,
 );
 
+coerce 'LaTeX::TikZ::Set::Point'
+    => from 'Any'
+    => via { __PACKAGE__->new(point => $_) };
+
 sub path {
  my ($set, $tikz) = @_;