diff options
Diffstat (limited to 'Master/texmf-dist/doc/support/asymptote-manual-zh-cn/src/latticeshading.asy')
-rw-r--r-- | Master/texmf-dist/doc/support/asymptote-manual-zh-cn/src/latticeshading.asy | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/support/asymptote-manual-zh-cn/src/latticeshading.asy b/Master/texmf-dist/doc/support/asymptote-manual-zh-cn/src/latticeshading.asy new file mode 100644 index 00000000000..c6689fa72d5 --- /dev/null +++ b/Master/texmf-dist/doc/support/asymptote-manual-zh-cn/src/latticeshading.asy @@ -0,0 +1,7 @@ +size(200); + +pen[][] p={{white,grey,black}, + {red,green,blue}, + {cyan,magenta,yellow}}; + +latticeshade(unitsquare,p); |