# set terminal pngcairo transparent enhanced font "arial,10" fontscale 1.0 size 600, 400 # set output 'binary_polygon.1.png' unset border unset key set view 150, 55, 1.25, 1 set view equal xyz set size ratio -1 1,1 set style data lines unset xtics unset ytics unset ztics unset cbtics unset rtics set title "binary format='%3float64%int32' blank=NaN\n using 1:2:3:4 with polygons lc variable" set trange [ * : * ] noreverse nowriteback set urange [ * : * ] noreverse nowriteback set vrange [ * : * ] noreverse nowriteback set xrange [ -1.00000 : 1.00000 ] noreverse nowriteback set x2range [ * : * ] noreverse writeback set yrange [ * : * ] noreverse writeback set y2range [ * : * ] noreverse writeback set zrange [ * : * ] noreverse writeback set cbrange [ * : * ] noreverse writeback set rrange [ * : * ] noreverse writeback set pm3d interpolate 1,1 flush begin noftriangles border linecolor rgb "black" linewidth 1.000 dashtype solid corners2color mean set pm3d lighting primary 0.5 specular 0.2 spec2 0.3 set pm3d spotlight rgb 0xff0044 rot_x 50 rot_z 90 Phong 4.0 set colorbox vertical origin screen 0.9, 0.2 size screen 0.05, 0.6 front noinvert bdefault VERSION = "gnuplot version 6.0.3" NO_ANIMATION = 1 ## Last datafile plotted: "dodecahedron.bin" ## Last plot was a multiplot # saved multiplot set multiplot layout 1,2 title "Compare text and binary input data" set title "text input data\nusing 1:2:3:4 with polygons lc variable" splot 'dodecahedron.dat' using 1:2:3:(column(-1)+3) with polygons lc variable set title "binary format='%3float64%int32' blank=NaN\n using 1:2:3:4 with polygons lc variable" splot 'dodecahedron.bin' binary format="%3float64%int32" blank=NaN using 1:2:3:($4+3) with polygons lc variable unset multiplot