19 lines
677 B
Gnuplot
19 lines
677 B
Gnuplot
set terminal eps size 3.4,2
|
|
set output 'bergwerk_path2_nexus.eps'
|
|
set termoption dashlength 0.5
|
|
set ticslevel 0
|
|
set view equal xy
|
|
set zrange [0:2200]
|
|
set multiplot layout 1,1 scale 2.7,2.7 offset 0,0.23
|
|
set view 72,33
|
|
unset border
|
|
unset xtics
|
|
unset ytics
|
|
unset ztics
|
|
splot \
|
|
'data/floors.dat' notitle with lines lc rgb '#777777', \
|
|
'data/path2.dat' notitle with lines lw 2.5 dashtype 2 lc rgb '#007700', \
|
|
'data/est_bergwerk_path2_nexus_simple.dat' notitle with lines lw 2.5 lc rgb '#000000', \
|
|
'data/est_bergwerk_path2_nexus_multi.dat' notitle with lines lw 2.5 lc rgb '#AA0000', \
|
|
'data/est_bergwerk_path2_nexus_shortest.dat' notitle with lines lw 2.5 lc rgb '#0000AA'
|