diff options
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/triangles.asy')
-rw-r--r-- | Master/texmf-dist/doc/asymptote/examples/triangles.asy | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/triangles.asy b/Master/texmf-dist/doc/asymptote/examples/triangles.asy index fc62c58c120..da1b93d28b5 100644 --- a/Master/texmf-dist/doc/asymptote/examples/triangles.asy +++ b/Master/texmf-dist/doc/asymptote/examples/triangles.asy @@ -1,12 +1,14 @@ import three; size(10cm); +currentlight=Headlamp; + triple[] v={O,X,X+Y,Y}; triple[] n={Z,X}; int[][] vi={{0,1,2},{2,3,0}}; -int[][] ni={{0,0,0},{1,1,1}}; +int[][] ni={{1,0,1},{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), |