summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/threeviews.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/threeviews.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/threeviews.asy17
1 files changed, 15 insertions, 2 deletions
diff --git a/Master/texmf/doc/asymptote/examples/threeviews.asy b/Master/texmf/doc/asymptote/examples/threeviews.asy
index 39f9ed4464e..05c89e650ca 100644
--- a/Master/texmf/doc/asymptote/examples/threeviews.asy
+++ b/Master/texmf/doc/asymptote/examples/threeviews.asy
@@ -1,13 +1,26 @@
import three;
picture pic;
-size(pic,200);
+unitsize(pic,5cm);
+
currentlight.viewport=false;
settings.render=4;
+settings.toolbar=false;
+viewportmargin=(1cm,1cm);
draw(pic,scale3(0.5)*unitsphere,green);
draw(pic,Label("$x$",1),O--X);
draw(pic,Label("$y$",1),O--Y);
draw(pic,Label("$z$",1),O--Z);
-addViews(pic);
+// Europe and Asia:
+//addViews(pic,ThreeViewsFR);
+//addViews(pic,SixViewsFR);
+
+// United Kingdom, United States, Canada, and Australia:
+addViews(pic,ThreeViewsUS);
+//addViews(pic,SixViewsUS);
+
+// Front, Top, Right,
+// Back, Bottom, Left:
+//addViews(pic,SixViews);