blob: a1c11d588b90160d5dea3d0699b45aba6f2bbb7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/perl
# convert a CAMM-GL III file to SVG to see what is being plotted
# Line colors represent the order of plotting (red to violet)
## Copyright (c) 2019-2020 by Thomas Kremer
## License: GPL ver. 2 or 3
# usage:
# camm2svg.pl infile > outfile
# camm2svg.pl < infile > outfile
use strict;
use warnings;
use CAMM;
local $/ = undef;
my $camm = <>;
my $svg = CAMM->to_svg($camm,1,1);
print $svg;
|