summaryrefslogtreecommitdiff
path: root/info/asymptote-manual-zh-cn/src/Coons.asy
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /info/asymptote-manual-zh-cn/src/Coons.asy
Initial commit
Diffstat (limited to 'info/asymptote-manual-zh-cn/src/Coons.asy')
-rw-r--r--info/asymptote-manual-zh-cn/src/Coons.asy6
1 files changed, 6 insertions, 0 deletions
diff --git a/info/asymptote-manual-zh-cn/src/Coons.asy b/info/asymptote-manual-zh-cn/src/Coons.asy
new file mode 100644
index 0000000000..9f59d15257
--- /dev/null
+++ b/info/asymptote-manual-zh-cn/src/Coons.asy
@@ -0,0 +1,6 @@
+size(200);
+
+pen[] p={red,green,blue,magenta};
+path g=(0,0){dir(45)}..(1,0)..(1,1)..(0,1)..cycle;
+tensorshade(g,p);
+dot(g);