diff options
author | Karl Berry <karl@freefriends.org> | 2020-03-01 23:10:25 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-03-01 23:10:25 +0000 |
commit | 81abf43d2b32106102462c3fd1b6c52c0b74f6b7 (patch) | |
tree | 8ff3cf992c81a46d17219ac528c3cb6fe7467402 /Master/texmf-dist/doc/asymptote/examples/triangles.asy | |
parent | 668f13d96ea148cade89c8813883c8b5a90cb55e (diff) |
asymptote 2.62 support files
git-svn-id: svn://tug.org/texlive/trunk@53988 c570f23f-e606-0410-a88d-b1316a301751
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), |