diff options
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/unitcircle3.asy')
-rw-r--r-- | Master/texmf/doc/asymptote/examples/unitcircle3.asy | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Master/texmf/doc/asymptote/examples/unitcircle3.asy b/Master/texmf/doc/asymptote/examples/unitcircle3.asy new file mode 100644 index 00000000000..be282011dca --- /dev/null +++ b/Master/texmf/doc/asymptote/examples/unitcircle3.asy @@ -0,0 +1,9 @@ +import three; + +size(100); + +path3 g=(1,0,0)..(0,1,0)..(-1,0,0)..(0,-1,0)..cycle; +draw(g); +draw(O--Z,red+dashed,Arrow3); +draw(((-1,-1,0)--(1,-1,0)--(1,1,0)--(-1,1,0)--cycle)); +dot(g,red); |