~ubuntu-branches/ubuntu/utopic/circos/utopic

« back to all changes in this revision

Viewing changes to lib/Circos/Image.pm

  • Committer: Package Import Robot
  • Author(s): Olivier Sallou
  • Date: 2013-05-20 09:01:27 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130520090127-s5nbumg8563x00ee
Tags: 0.64-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
use warnings;
35
35
use base 'Exporter';
36
36
 
37
 
our @EXPORT_OK = qw($IM $COLORS $PNG_MAKE $SVG_MAKE draw_line);
 
37
our @EXPORT_OK = qw($IM $COLORS $PNG_MAKE $SVG_MAKE $MAP_MAKE draw_line);
38
38
our @EXPORT = qw(
39
39
$IM
40
40
$COLORS
41
41
$PNG_MAKE
42
42
$SVG_MAKE
 
43
$MAP_MAKE
43
44
draw_line
44
45
);
45
46
 
59
60
use Circos::Error;
60
61
use Circos::Utils;
61
62
 
62
 
our ($IM,$COLORS,$PNG_MAKE,$SVG_MAKE);
 
63
our ($IM,$COLORS,$PNG_MAKE,$SVG_MAKE,$MAP_MAKE);
63
64
 
64
65
our $default_color = "black";
65
66