summaryrefslogtreecommitdiff
path: root/graphics/asymptote/examples/twoSpheres.asy
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/examples/twoSpheres.asy')
-rw-r--r--graphics/asymptote/examples/twoSpheres.asy17
1 files changed, 17 insertions, 0 deletions
diff --git a/graphics/asymptote/examples/twoSpheres.asy b/graphics/asymptote/examples/twoSpheres.asy
new file mode 100644
index 0000000000..c043ae3731
--- /dev/null
+++ b/graphics/asymptote/examples/twoSpheres.asy
@@ -0,0 +1,17 @@
+import three;
+import palette;
+
+size(20cm);
+
+currentprojection=orthographic(1,1,1);
+
+draw(box((-2,-2,-1),(2,2,1)));
+
+draw(shift(-Z)*surface(box((-2,-2),(2,2))),blue);
+draw(shift(Z)*surface(box((-2,-2),(2,2))),orange+opacity(0.5));
+
+surface s=unitsphere;
+s.colors(palette(s.map(zpart),Gradient(green+opacity(0.6),white,
+ green+opacity(0.6))));
+draw(shift(0.5X+0.5Y)*s);
+draw(shift(-0.5X-0.5Y)*s);