gnuplotでfs transparentを使って、薄い色の円を描く方法

もとから入っているredやblueなどの色以外に、もっと薄い色の図形を描くためには、
fs transparentを使う。

f:id:yanagikn:20130111131451p:plain

unset obj
x = 3
y = 4
r = 2
set obj circle at x,y fc rgb "blue" size r fs solid
set obj circle at x,-y fc rgb "blue" size r fs transparent solid 0.7 noborder
set obj circle at -x,-y fc rgb "blue" size r fs transparent solid 0.5 noborder
set obj circle at -x,y fc rgb "blue" size r fs transparent solid 0.3 noborder
# 網目
set obj circle at -x,y+1 fc rgb "blue" size r fill transparent pattern 4

plot x lc -1