summaryrefslogtreecommitdiff
path: root/info/asymptote-faq-zh-cn/src/figures/6-19.asy
diff options
context:
space:
mode:
Diffstat (limited to 'info/asymptote-faq-zh-cn/src/figures/6-19.asy')
-rw-r--r--info/asymptote-faq-zh-cn/src/figures/6-19.asy10
1 files changed, 10 insertions, 0 deletions
diff --git a/info/asymptote-faq-zh-cn/src/figures/6-19.asy b/info/asymptote-faq-zh-cn/src/figures/6-19.asy
new file mode 100644
index 0000000000..5875e5043f
--- /dev/null
+++ b/info/asymptote-faq-zh-cn/src/figures/6-19.asy
@@ -0,0 +1,10 @@
+import graph;
+size(10cm,0);
+pair[] z={(0,0),(0.5,0.5),(1,1)};
+path g=graph(z);
+
+draw(shift(0,.5)*g,marker(scale(5)*unitcircle,FillDraw(white)));
+
+xaxis(BottomTop,LeftTicks);
+yaxis(LeftRight,RightTicks);
+