summaryrefslogtreecommitdiff
path: root/graphics/asymptote/doc/unitcircle3.asy
blob: be282011dca0a9833c36b3766269f6abd3952aac (plain)
1
2
3
4
5
6
7
8
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);