iccsa-19-vessel

Vessel: Efficient Plain Text File Format for Ship Hull Geometry
git clone https://git.igankevich.com/iccsa-19-vessel.git
Log | Files | Refs

bow.gnuplot (527B)


      1 #!/usr/bin/gnuplot -d
      2 
      3 set terminal svg size 1920/8,1080/10 dynamic round font 'Times, 10' lw 0.5
      4 load 'gnuplot/style.gnuplot'
      5 set size ratio -1
      6 unset border
      7 unset xtics
      8 unset ytics
      9 set key outside right center Left reverse
     10 #set style fill pattern border lc '#404040'
     11 
     12 set output 'build/bow.svg'
     13 plot \
     14 	'gnuplot/bow.dat' index 0 using 1:3 with lines ls 1 lw 3 title 'Polygon', \
     15 	for [i=1:1] '' index i using 1:3 with lines ls 2 dt 3 lw 3 title 'Frames', \
     16 	for [i=2:4] '' index i using 1:3 with lines ls 2 dt 3 lw 3 notitle
     17