我正在尝试画一个三角形表面。我将表面的三个角设置为[1,0,1]
,[0,1,1]
和[1,1,0]
。我这样做:
set view 57, 64
$data << EOD
1.000 0.000 1.000
0.000 1.000 1.000
1.000 1.000 0.000
1.000 0.000 1.000
EOD
set label 1 "C" font "Arial, 11" front at 1.100, 0.000, 1.100
set label 2 "A" font "Arial, 11" front at 0.000, 1.050, 1.050
set label 3 "B" font "Arial, 11" front at 1.050, 1.050, 0.000
splot "$data" with lines lw 3 lc rgb 'black', \
"< echo '1.000 0.000 1.000'" with points pt 7 lc rgb 'black', \
"< echo '0.000 1.000 1.000'" with points pt 7 lc rgb 'black', \
"< echo '1.000 1.000 0.000'" with points pt 7 lc rgb 'black'
现在如何将多边形设为灰色或透明灰色?