diff options
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/image.asy')
-rw-r--r-- | Master/texmf-dist/doc/asymptote/examples/image.asy | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/image.asy b/Master/texmf-dist/doc/asymptote/examples/image.asy new file mode 100644 index 00000000000..37a2cf60172 --- /dev/null +++ b/Master/texmf-dist/doc/asymptote/examples/image.asy @@ -0,0 +1,21 @@ +size(12cm,12cm); + +import graph; +import palette; + +int n=256; +real ninv=2pi/n; +real[][] v=new real[n][n]; + +for(int i=0; i < n; ++i) + for(int j=0; j < n; ++j) + v[i][j]=sin(i*ninv)*cos(j*ninv); + +pen[] Palette=BWRainbow(); + +picture bar; + +bounds range=image(v,(0,0),(1,1),Palette); +palette(bar,"$A$",range,(0,0),(0.5cm,8cm),Right,Palette, + PaletteTicks("$%+#.1f$")); +add(bar.fit(),point(E),30E); |