summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/triangles.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/triangles.asy')
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/triangles.asy9
1 files changed, 5 insertions, 4 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/triangles.asy b/Master/texmf-dist/doc/asymptote/examples/triangles.asy
index c3b3c2aec84..fc62c58c120 100644
--- a/Master/texmf-dist/doc/asymptote/examples/triangles.asy
+++ b/Master/texmf-dist/doc/asymptote/examples/triangles.asy
@@ -8,12 +8,13 @@ triple[] n={Z,X};
int[][] vi={{0,1,2},{2,3,0}};
int[][] ni={{0,0,0},{1,1,1}};
+// Adobe Reader exhibits a PRC rendering bug for opacities:
pen[] p={red+opacity(0.5),green+opacity(0.5),blue+opacity(0.5),
black+opacity(0.5)};
-// Adobe Reader exhibits a PRC rendering bug for opacities in (0.5,1):
-//pen[] p={red+opacity(0.9),green+opacity(0.9),blue+opacity(0.9),black+opacity(0.9)};
-
int[][] pi={{0,1,2},{2,3,0}};
draw(v,vi,n,ni,red);
-draw(v+Z,vi,p,pi);
+draw(v+Z,vi,n,ni,p,pi);
+//draw(v+Z,vi,p,pi);
+//draw(v,vi,red);
+//draw(v+Z,vi);