File: test6.p

package info (click to toggle)
libpgplot-perl 1%3A2.21-6
  • links: PTS, VCS
  • area: contrib
  • in suites: stretch
  • size: 316 kB
  • ctags: 31
  • sloc: perl: 679; ansic: 453; makefile: 7
file content (60 lines) | stat: -rwxr-xr-x 1,111 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/local/bin/perl

use PGPLOT;

print "\n\nTesting perl function passing to pgconx...\n\n";

print "PGPLOT module version $PGPLOT::VERSION\n\n";

pgqinf("VERSION",$val,$len);
print "PGPLOT $val library\n\n";

# Read in image (int*2 raw byte array)

$img="";
open(IMG,"test.img") || die "Data file test.img not found";
if($^O =~ /mswin32/i) {binmode(IMG)}
read(IMG, $img, 32768);
close(IMG) or die "Can't close test.img: $!";

print length($img)," bytes read\n";

@image = unpack("n*",$img);

print $#image+1," element image stored\n";

$dev = "?" unless defined $dev;

pgbegin(0,$dev,1,1);

print "Plotting...\n";

pgsci(3);
pgwnad(1,128,1,128);
pgbox("BCNST",0,0,"BCNST",0,0);

pglabel("X","Y","Dropped Galaxy");

pgsci(5); pgsls(1);
@cont = (-1,1000,2000,3000,4000,5000);

pgsci(5);

pgconx(\@image, 128, 128, 1,128,1,128, \@cont, 6, "squashplot");
pgwnad(0,1000,0,1000);

$len=1; # -w fudge

pgend;

sub squashplot {
    my ($visible,$x,$y,$z) = @_;

    $xworld = $x*$x/128;
    $yworld = $y*$y/128;
    if ($visible) {
       pgdraw($xworld,$yworld);
    }else{
       pgmove($xworld,$yworld);
    }
}