summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote')
-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
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
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);