summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2011-05-21 14:57:54 +0200
committerfranck cuny <franck@lumberjaph.net>2011-05-21 14:57:54 +0200
commite837ded25ad32d88c73fe87f1a2ffc432da6f33d (patch)
treec0004fe8709e6eb432fe353605b554300571bf99 /lib
parenttidy (diff)
downloadgraph-gexf-e837ded25ad32d88c73fe87f1a2ffc432da6f33d.tar.gz
remove position, this is now a viz element
Signed-off-by: franck cuny <franck@lumberjaph.net>
Diffstat (limited to 'lib')
-rw-r--r--lib/Graph/GEXF/Role/Position.pm14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/Graph/GEXF/Role/Position.pm b/lib/Graph/GEXF/Role/Position.pm
deleted file mode 100644
index 2d7bbc4..0000000
--- a/lib/Graph/GEXF/Role/Position.pm
+++ /dev/null
@@ -1,14 +0,0 @@
-package Graph::GEXF::Role::Position;
-
-use Moose::Role;
-
-for (qw/x y z/) {
- has $_ => (
- is => 'rw',
- isa => 'Num',
- lazy => 1,
- default => '0.0',
- );
-}
-
-1;