diff options
author | Mojca Miklavec <mojca.miklavec@gmail.com> | 2014-05-17 18:38:56 +0000 |
---|---|---|
committer | Mojca Miklavec <mojca.miklavec@gmail.com> | 2014-05-17 18:38:56 +0000 |
commit | eee5aedecc1c0c3f484016a2b73f29a6f4cb9cb7 (patch) | |
tree | ca2673ba2b18b70ed6c32fda317dd108afd7c172 /Master/texmf-dist/doc/asymptote | |
parent | 237141a8094c14ab28177177c991d14c5041c116 (diff) |
asymptote 2.31
git-svn-id: svn://tug.org/texlive/trunk@34082 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/asymptote')
-rw-r--r-- | Master/texmf-dist/doc/asymptote/CAD.pdf | bin | 67500 -> 67500 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/asymptote/TeXShopAndAsymptote.pdf | bin | 31516 -> 31527 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/asymptote/asy-latex.pdf | bin | 194499 -> 194499 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/asymptote/asyRefCard.pdf | bin | 53478 -> 53672 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/asymptote/asymptote.pdf | bin | 1271270 -> 1272511 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/asymptote/examples/animations/embeddedmovie.asy | 2 | ||||
-rw-r--r-- | Master/texmf-dist/doc/asymptote/examples/splitpatch.asy | 8 |
7 files changed, 5 insertions, 5 deletions
diff --git a/Master/texmf-dist/doc/asymptote/CAD.pdf b/Master/texmf-dist/doc/asymptote/CAD.pdf Binary files differindex c66b46cd4f1..ba59db86d8a 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 0d7ed23167d..82a110f254f 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 f221968b949..33812486191 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 58ee3e156e6..66f8027aee6 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 f2a6b867c62..71254d9591b 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/animations/embeddedmovie.asy b/Master/texmf-dist/doc/asymptote/examples/animations/embeddedmovie.asy index 12fdf04dedc..7557266bb00 100644 --- a/Master/texmf-dist/doc/asymptote/examples/animations/embeddedmovie.asy +++ b/Master/texmf-dist/doc/asymptote/examples/animations/embeddedmovie.asy @@ -1,6 +1,6 @@ // An embedded movie; // -// See http://www.tug.org/tex-archive/macros/latex/contrib/movie15/README +// See http://mirror.ctan.org/macros/latex/contrib/media9/doc/media9.pdf // for documentation of the options. import embed; // Add embedded movie diff --git a/Master/texmf-dist/doc/asymptote/examples/splitpatch.asy b/Master/texmf-dist/doc/asymptote/examples/splitpatch.asy index 2e9fae66431..f8578bbbcc9 100644 --- a/Master/texmf-dist/doc/asymptote/examples/splitpatch.asy +++ b/Master/texmf-dist/doc/asymptote/examples/splitpatch.asy @@ -5,8 +5,8 @@ size(300); // A structure to subdivide two intersecting patches about their intersection. struct split { - surface[] S=sequence(new surface(int i) {return new surface;},1); - surface[] T=sequence(new surface(int i) {return new surface;},1); + surface[] S={new surface}; + surface[] T={new surface}; struct tree { tree[] tree=new tree[2]; @@ -17,7 +17,7 @@ struct split // Subdivide p and q to depth n if they overlap. void write(tree pt, tree qt, triple[][] p, triple[][] q, int depth=n) { --depth; - triple[][][] Split(triple[][] P)=depth % 2 == 0 ? hsplit : vsplit; + triple[][][] Split(triple[][] P, real u=0)=depth % 2 == 0 ? hsplit : vsplit; triple[][][] P=Split(p); triple[][][] Q=Split(q); @@ -40,7 +40,7 @@ struct split // Output the subpatches of p from subdivision. void read(surface[] S, tree t, triple[][] p, int depth=n) { --depth; - triple[][][] Split(triple[][] P)=depth % 2 == 0 ? hsplit : vsplit; + triple[][][] Split(triple[][] P, real u=0)=depth % 2 == 0 ? hsplit : vsplit; triple[][][] P=Split(p); for(int i=0; i < 2; ++i) { |