f(x,y)=sin(sin(x))*(sin(y)-cos(x))-cos(cos(y))*(cos(x)-sin(y))
g(x,y)=f(x,y)>0 ? 1: 0
set pm3d map
unset colorbox
set palette gray
set size square
unset key
unset xtics
unset ytics
set samples 512
set isosamples 512,512
set term png tiny crop
R=10
#
set out "g000.png"
splot [-R:R][-R:R] g(x,y)
#
set out "f000.png"
splot f(x,y)
#
set palette color
set out "f000c.png"
splot f(x,y)