diff options
author | Karl Berry <karl@freefriends.org> | 2020-03-05 00:33:12 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-03-05 00:33:12 +0000 |
commit | 35fd641a3546acc0c62e0aa7f134888e36da30d4 (patch) | |
tree | 54dce6b6dc5eca8aa11cb78298fddcb4aafc65fc /Master/texmf-dist/doc/asymptote | |
parent | 8e48dc594ccbdc43d7e4e984a2bdf1627d523bb7 (diff) |
asymptote 2.64 support files
git-svn-id: svn://tug.org/texlive/trunk@54085 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/asymptote')
-rw-r--r-- | Master/texmf-dist/doc/asymptote/CAD.pdf | bin | 167756 -> 167756 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/asymptote/TeXShopAndAsymptote.pdf | bin | 76904 -> 77097 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/asymptote/asy-latex.pdf | bin | 194590 -> 194590 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/asymptote/asyRefCard.pdf | bin | 121144 -> 121144 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/asymptote/asymptote.pdf | bin | 1293632 -> 1293654 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/asymptote/examples/cones.asy | 7 | ||||
-rw-r--r-- | Master/texmf-dist/doc/asymptote/examples/hyperboloid.asy | 2 |
7 files changed, 5 insertions, 4 deletions
diff --git a/Master/texmf-dist/doc/asymptote/CAD.pdf b/Master/texmf-dist/doc/asymptote/CAD.pdf Binary files differindex 069c76e08c3..42b065fcfcf 100644 --- a/Master/texmf-dist/doc/asymptote/CAD.pdf +++ b/Master/texmf-dist/doc/asymptote/CAD.pdf diff --git a/Master/texmf-dist/doc/asymptote/TeXShopAndAsymptote.pdf b/Master/texmf-dist/doc/asymptote/TeXShopAndAsymptote.pdf Binary files differindex 3149f8360a5..4fb27df1e5b 100644 --- a/Master/texmf-dist/doc/asymptote/TeXShopAndAsymptote.pdf +++ b/Master/texmf-dist/doc/asymptote/TeXShopAndAsymptote.pdf diff --git a/Master/texmf-dist/doc/asymptote/asy-latex.pdf b/Master/texmf-dist/doc/asymptote/asy-latex.pdf Binary files differindex 66cef1793c9..dadab9c3f0a 100644 --- a/Master/texmf-dist/doc/asymptote/asy-latex.pdf +++ b/Master/texmf-dist/doc/asymptote/asy-latex.pdf diff --git a/Master/texmf-dist/doc/asymptote/asyRefCard.pdf b/Master/texmf-dist/doc/asymptote/asyRefCard.pdf Binary files differindex fc4991af75c..4a1603627d1 100644 --- a/Master/texmf-dist/doc/asymptote/asyRefCard.pdf +++ b/Master/texmf-dist/doc/asymptote/asyRefCard.pdf diff --git a/Master/texmf-dist/doc/asymptote/asymptote.pdf b/Master/texmf-dist/doc/asymptote/asymptote.pdf Binary files differindex 0aff63e5c6d..da152377f18 100644 --- a/Master/texmf-dist/doc/asymptote/asymptote.pdf +++ b/Master/texmf-dist/doc/asymptote/asymptote.pdf diff --git a/Master/texmf-dist/doc/asymptote/examples/cones.asy b/Master/texmf-dist/doc/asymptote/examples/cones.asy index e63a4281251..fdc900e4981 100644 --- a/Master/texmf-dist/doc/asymptote/examples/cones.asy +++ b/Master/texmf-dist/doc/asymptote/examples/cones.asy @@ -4,15 +4,16 @@ size(200); currentprojection=orthographic(5,4,2); render render=render(compression=Low,merge=true); +pen skeletonpen=blue+0.15mm; revolution upcone=cone(-Z,1,1); revolution downcone=cone(Z,1,-1); draw(surface(upcone),green,render); draw(surface(downcone),green,render); -draw(upcone,5,blue,longitudinalpen=nullpen); -draw(downcone,5,blue,longitudinalpen=nullpen); +draw(upcone,5,skeletonpen,longitudinalpen=nullpen); +draw(downcone,5,skeletonpen,longitudinalpen=nullpen); revolution cone=shift(2Y-2X)*cone(1,1); draw(surface(cone),green,render); -draw(cone,5,blue); +draw(cone,5,skeletonpen); diff --git a/Master/texmf-dist/doc/asymptote/examples/hyperboloid.asy b/Master/texmf-dist/doc/asymptote/examples/hyperboloid.asy index 22f3b3d80b0..32c0ff52e07 100644 --- a/Master/texmf-dist/doc/asymptote/examples/hyperboloid.asy +++ b/Master/texmf-dist/doc/asymptote/examples/hyperboloid.asy @@ -5,4 +5,4 @@ currentprojection=perspective(4,4,3); revolution hyperboloid=revolution(graph(new triple(real z) { return (sqrt(1+z*z),0,z);},-2,2,20,operator ..),axis=Z); draw(surface(hyperboloid),green,render(compression=Low,merge=true)); -draw(hyperboloid,6,blue,longitudinalpen=nullpen); +draw(hyperboloid,6,blue+0.15mm,longitudinalpen=nullpen); |