summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-03-05 00:33:12 +0000
committerKarl Berry <karl@freefriends.org>2020-03-05 00:33:12 +0000
commit35fd641a3546acc0c62e0aa7f134888e36da30d4 (patch)
tree54dce6b6dc5eca8aa11cb78298fddcb4aafc65fc /Master/texmf-dist/doc
parent8e48dc594ccbdc43d7e4e984a2bdf1627d523bb7 (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')
-rw-r--r--Master/texmf-dist/doc/asymptote/CAD.pdfbin167756 -> 167756 bytes
-rw-r--r--Master/texmf-dist/doc/asymptote/TeXShopAndAsymptote.pdfbin76904 -> 77097 bytes
-rw-r--r--Master/texmf-dist/doc/asymptote/asy-latex.pdfbin194590 -> 194590 bytes
-rw-r--r--Master/texmf-dist/doc/asymptote/asyRefCard.pdfbin121144 -> 121144 bytes
-rw-r--r--Master/texmf-dist/doc/asymptote/asymptote.pdfbin1293632 -> 1293654 bytes
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/cones.asy7
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/hyperboloid.asy2
-rw-r--r--Master/texmf-dist/doc/info/asy-faq.info2
-rw-r--r--Master/texmf-dist/doc/info/asymptote.info4
9 files changed, 8 insertions, 7 deletions
diff --git a/Master/texmf-dist/doc/asymptote/CAD.pdf b/Master/texmf-dist/doc/asymptote/CAD.pdf
index 069c76e08c3..42b065fcfcf 100644
--- a/Master/texmf-dist/doc/asymptote/CAD.pdf
+++ b/Master/texmf-dist/doc/asymptote/CAD.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/asymptote/TeXShopAndAsymptote.pdf b/Master/texmf-dist/doc/asymptote/TeXShopAndAsymptote.pdf
index 3149f8360a5..4fb27df1e5b 100644
--- a/Master/texmf-dist/doc/asymptote/TeXShopAndAsymptote.pdf
+++ b/Master/texmf-dist/doc/asymptote/TeXShopAndAsymptote.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/asymptote/asy-latex.pdf b/Master/texmf-dist/doc/asymptote/asy-latex.pdf
index 66cef1793c9..dadab9c3f0a 100644
--- a/Master/texmf-dist/doc/asymptote/asy-latex.pdf
+++ b/Master/texmf-dist/doc/asymptote/asy-latex.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/asymptote/asyRefCard.pdf b/Master/texmf-dist/doc/asymptote/asyRefCard.pdf
index fc4991af75c..4a1603627d1 100644
--- a/Master/texmf-dist/doc/asymptote/asyRefCard.pdf
+++ b/Master/texmf-dist/doc/asymptote/asyRefCard.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/asymptote/asymptote.pdf b/Master/texmf-dist/doc/asymptote/asymptote.pdf
index 0aff63e5c6d..da152377f18 100644
--- a/Master/texmf-dist/doc/asymptote/asymptote.pdf
+++ b/Master/texmf-dist/doc/asymptote/asymptote.pdf
Binary files differ
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);
diff --git a/Master/texmf-dist/doc/info/asy-faq.info b/Master/texmf-dist/doc/info/asy-faq.info
index 7cd97b0e593..56a9edb0b59 100644
--- a/Master/texmf-dist/doc/info/asy-faq.info
+++ b/Master/texmf-dist/doc/info/asy-faq.info
@@ -10,7 +10,7 @@ END-INFO-DIR-ENTRY
File: asy-faq.info, Node: Top, Next: Question 1.1, Up: (dir)
ASYMPTOTE FREQUENTLY ASKED QUESTIONS
- 02 Mar 2020
+ 03 Mar 2020
This is the list of Frequently Asked Questions about Asymptote (asy).
diff --git a/Master/texmf-dist/doc/info/asymptote.info b/Master/texmf-dist/doc/info/asymptote.info
index 03ea489302e..9aa184a0bb7 100644
--- a/Master/texmf-dist/doc/info/asymptote.info
+++ b/Master/texmf-dist/doc/info/asymptote.info
@@ -1,7 +1,7 @@
This is asymptote.info, produced by makeinfo version 6.6 from
asymptote.texi.
-This file documents 'Asymptote', version 2.63.
+This file documents 'Asymptote', version 2.64.
<https://asymptote.sourceforge.io>
@@ -22,7 +22,7 @@ File: asymptote.info, Node: Top, Next: Description, Prev: (dir), Up: (dir)
Asymptote
*********
-This file documents 'Asymptote', version 2.63.
+This file documents 'Asymptote', version 2.64.
<https://asymptote.sourceforge.io>