summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2024-02-29 23:33:33 +0000
committerKarl Berry <karl@freefriends.org>2024-02-29 23:33:33 +0000
commit0a414e9c571e798fd24be3e88ac13d03e332c0ce (patch)
treeb29483d7cb14923bd95ffe5b9ac6373b335446c8 /Master/texmf-dist/doc/asymptote
parent09c3fbc6fd99c8dbe9d7552385c134b86bbb1534 (diff)
asymptote 2.87 support files, windows binary
git-svn-id: svn://tug.org/texlive/trunk@70267 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/asymptote')
-rw-r--r--Master/texmf-dist/doc/asymptote/CAD.pdfbin198487 -> 198543 bytes
-rw-r--r--Master/texmf-dist/doc/asymptote/TeXShopAndAsymptote.pdfbin81303 -> 81270 bytes
-rw-r--r--Master/texmf-dist/doc/asymptote/asy-latex.pdfbin208908 -> 209130 bytes
-rw-r--r--Master/texmf-dist/doc/asymptote/asyRefCard.pdfbin121145 -> 121145 bytes
-rw-r--r--Master/texmf-dist/doc/asymptote/asymptote.pdfbin1288667 -> 1303978 bytes
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/filesurface.asy9
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/triads.asy2
7 files changed, 2 insertions, 9 deletions
diff --git a/Master/texmf-dist/doc/asymptote/CAD.pdf b/Master/texmf-dist/doc/asymptote/CAD.pdf
index 404c5f0e5b6..306c5309f15 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 9926852eec1..a43c2db07c5 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 554016edc6b..6a6834ba30a 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 bdc97baa740..de22ab3176b 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 b38e93f9c76..79ccc9346e3 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/filesurface.asy b/Master/texmf-dist/doc/asymptote/examples/filesurface.asy
index b895ec803eb..bfa500ebf5c 100644
--- a/Master/texmf-dist/doc/asymptote/examples/filesurface.asy
+++ b/Master/texmf-dist/doc/asymptote/examples/filesurface.asy
@@ -6,16 +6,9 @@ size3(200,IgnoreAspect);
file in=input("filesurface.dat").line();
real[] x=in;
real[] y=in;
-
real[][] z=in;
-triple f(pair t) {
- int i=round(t.x);
- int j=round(t.y);
- return (x[i],y[j],z[i][j]);
-}
-
-surface s=surface(f,(0,0),(x.length-1,y.length-1),x.length-1,y.length-1);
+surface s=surface(z,x,y,linear,linear);
real[] level=uniform(min(z)*(1-sqrtEpsilon),max(z)*(1+sqrtEpsilon),4);
s.colors(palette(s.map(new real(triple v) {return find(level >= v.z);}),
diff --git a/Master/texmf-dist/doc/asymptote/examples/triads.asy b/Master/texmf-dist/doc/asymptote/examples/triads.asy
index d1923d3241f..6cecc55fa46 100644
--- a/Master/texmf-dist/doc/asymptote/examples/triads.asy
+++ b/Master/texmf-dist/doc/asymptote/examples/triads.asy
@@ -51,4 +51,4 @@ spectrum(m,s,l);
shipout("triadkpq");
-currentpicture.erase();
+erase();