diff options
author | Karl Berry <karl@freefriends.org> | 2011-06-19 12:55:47 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2011-06-19 12:55:47 +0000 |
commit | e3c76dde873b406caea8362741da0537cea3ac9d (patch) | |
tree | 7fd2f7e1f928a36d640b2720562eded540bf0857 /Master/texmf/doc | |
parent | 1e36e2153080d89f519641dbfc1351b35176a7ea (diff) |
asymptote 2.12
git-svn-id: svn://tug.org/texlive/trunk@23055 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf/doc')
-rw-r--r-- | Master/texmf/doc/asymptote/CAD.pdf | bin | 67539 -> 67539 bytes | |||
-rw-r--r-- | Master/texmf/doc/asymptote/TeXShopAndAsymptote.pdf | bin | 1762062 -> 31407 bytes | |||
-rw-r--r-- | Master/texmf/doc/asymptote/asy-latex.pdf | bin | 195177 -> 207758 bytes | |||
-rw-r--r-- | Master/texmf/doc/asymptote/asymptote.pdf | bin | 1236242 -> 1758774 bytes | |||
-rw-r--r-- | Master/texmf/doc/asymptote/examples/latexusage-1.asy | 54 | ||||
-rw-r--r-- | Master/texmf/doc/asymptote/examples/latexusage-2.asy | 24 | ||||
-rw-r--r-- | Master/texmf/doc/asymptote/examples/latexusage-3.asy | 39 | ||||
-rw-r--r-- | Master/texmf/doc/info/asy-faq.info | 2 | ||||
-rw-r--r-- | Master/texmf/doc/info/asymptote.info | 173 | ||||
-rw-r--r-- | Master/texmf/doc/man/man1/asy.1 | 7 | ||||
-rw-r--r-- | Master/texmf/doc/man/man1/asy.man1.pdf | bin | 11358 -> 11380 bytes |
11 files changed, 94 insertions, 205 deletions
diff --git a/Master/texmf/doc/asymptote/CAD.pdf b/Master/texmf/doc/asymptote/CAD.pdf Binary files differindex afaad32261c..997b619bf8e 100644 --- a/Master/texmf/doc/asymptote/CAD.pdf +++ b/Master/texmf/doc/asymptote/CAD.pdf diff --git a/Master/texmf/doc/asymptote/TeXShopAndAsymptote.pdf b/Master/texmf/doc/asymptote/TeXShopAndAsymptote.pdf Binary files differindex 5ae18cf90b3..e3b70f867b2 100644 --- a/Master/texmf/doc/asymptote/TeXShopAndAsymptote.pdf +++ b/Master/texmf/doc/asymptote/TeXShopAndAsymptote.pdf diff --git a/Master/texmf/doc/asymptote/asy-latex.pdf b/Master/texmf/doc/asymptote/asy-latex.pdf Binary files differindex c2be030ad3c..7dd6d2780c9 100644 --- a/Master/texmf/doc/asymptote/asy-latex.pdf +++ b/Master/texmf/doc/asymptote/asy-latex.pdf diff --git a/Master/texmf/doc/asymptote/asymptote.pdf b/Master/texmf/doc/asymptote/asymptote.pdf Binary files differindex 7cf4418bdc4..89ad91f2698 100644 --- a/Master/texmf/doc/asymptote/asymptote.pdf +++ b/Master/texmf/doc/asymptote/asymptote.pdf diff --git a/Master/texmf/doc/asymptote/examples/latexusage-1.asy b/Master/texmf/doc/asymptote/examples/latexusage-1.asy deleted file mode 100644 index b77279c6c47..00000000000 --- a/Master/texmf/doc/asymptote/examples/latexusage-1.asy +++ /dev/null @@ -1,54 +0,0 @@ -if(!settings.multipleView) settings.batchView=false; -defaultfilename="latexusage-1"; -if(settings.render < 0) settings.render=4; -settings.outformat=""; -settings.inlineimage=true; -settings.embed=true; -settings.toolbar=false; -viewportmargin=(2,2); - -// Global Asymptote definitions can be put here. -import three; -usepackage("bm"); -texpreamble("\def\V#1{\bm{#1}}"); -// One can globally override the default toolbar settings here: -// settings.toolbar=true; - -size(4cm,0); -pen colour1=red; -pen colour2=green; - -pair z0=(0,0); -pair z1=(-1,0); -pair z2=(1,0); -real r=1.5; -path c1=circle(z1,r); -path c2=circle(z2,r); -fill(c1,colour1); -fill(c2,colour2); - -picture intersection=new picture; -fill(intersection,c1,colour1+colour2); -clip(intersection,c2); - -add(intersection); - -draw(c1); -draw(c2); - -//draw("$\A$",box,z1); // Requires [inline] package option. -//draw(Label("$\B$","$B$"),box,z2); // Requires [inline] package option. -draw("$A$",box,z1); -draw("$\V{B}$",box,z2); - -pair z=(0,-2); -real m=3; -margin BigMargin=Margin(0,m*dot(unit(z1-z),unit(z0-z))); - -draw(Label("$A\cap B$",0),conj(z)--z0,Arrow,BigMargin); -draw(Label("$A\cup B$",0),z--z0,Arrow,BigMargin); -draw(z--z1,Arrow,Margin(0,m)); -draw(z--z2,Arrow,Margin(0,m)); - -shipout(bbox(0.25cm)); -viewportsize=(390.0pt,0); diff --git a/Master/texmf/doc/asymptote/examples/latexusage-2.asy b/Master/texmf/doc/asymptote/examples/latexusage-2.asy deleted file mode 100644 index 49c6458419c..00000000000 --- a/Master/texmf/doc/asymptote/examples/latexusage-2.asy +++ /dev/null @@ -1,24 +0,0 @@ -if(!settings.multipleView) settings.batchView=false; -settings.inlinetex=true; -deletepreamble(); -defaultfilename="latexusage-2"; -if(settings.render < 0) settings.render=4; -settings.outformat=""; -settings.inlineimage=true; -settings.embed=true; -settings.toolbar=false; -viewportmargin=(2,2); - -// Global Asymptote definitions can be put here. -import three; -usepackage("bm"); -texpreamble("\def\V#1{\bm{#1}}"); -// One can globally override the default toolbar settings here: -// settings.toolbar=true; - - -currentprojection=orthographic(5,4,2); -draw(unitcube,blue); -label("$V-E+F=2$",(0,1,0.5),3Y,blue+fontsize(17pt)); -size(0,113.81102pt,keepAspect=true); -viewportsize=(390.0pt,0); diff --git a/Master/texmf/doc/asymptote/examples/latexusage-3.asy b/Master/texmf/doc/asymptote/examples/latexusage-3.asy deleted file mode 100644 index 00173cb17ef..00000000000 --- a/Master/texmf/doc/asymptote/examples/latexusage-3.asy +++ /dev/null @@ -1,39 +0,0 @@ -if(!settings.multipleView) settings.batchView=false; -settings.inlinetex=true; -deletepreamble(); -defaultfilename="latexusage-3"; -if(settings.render < 0) settings.render=4; -settings.outformat=""; -settings.inlineimage=true; -settings.embed=true; -settings.toolbar=false; -viewportmargin=(2,2); - -// Global Asymptote definitions can be put here. -import three; -usepackage("bm"); -texpreamble("\def\V#1{\bm{#1}}"); -// One can globally override the default toolbar settings here: -// settings.toolbar=true; - - -pair z0=(0,0); -pair z1=(2,0); -pair z2=(5,0); -pair zf=z1+0.75*(z2-z1); - -draw(z1--z2); -dot(z1,red+0.15cm); -dot(z2,darkgreen+0.3cm); -label("$m$",z1,1.2N,red); -label("$M$",z2,1.5N,darkgreen); -label("$\hat{\ }$",zf,0.2*S,fontsize(24pt)+blue); - -pair s=-0.2*I; -draw("$x$",z0+s--z1+s,N,red,Arrows,Bars,PenMargins); -s=-0.5*I; -draw("$\bar{x}$",z0+s--zf+s,blue,Arrows,Bars,PenMargins); -s=-0.95*I; -draw("$X$",z0+s--z2+s,darkgreen,Arrows,Bars,PenMargins); -size(390.0pt,0,keepAspect=true); -viewportsize=(390.0pt,0); diff --git a/Master/texmf/doc/info/asy-faq.info b/Master/texmf/doc/info/asy-faq.info index 6fc4b7ce85c..15dcadac710 100644 --- a/Master/texmf/doc/info/asy-faq.info +++ b/Master/texmf/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 - 26 May 2011 + 18 Jun 2011 This is the list of Frequently Asked Questions about Asymptote (asy). diff --git a/Master/texmf/doc/info/asymptote.info b/Master/texmf/doc/info/asymptote.info index 55fbad3858a..484466be8be 100644 --- a/Master/texmf/doc/info/asymptote.info +++ b/Master/texmf/doc/info/asymptote.info @@ -1,11 +1,11 @@ This is asymptote.info, produced by makeinfo version 4.13 from ../asymptote.texi. -This file documents `Asymptote', version 2.10. +This file documents `Asymptote', version 2.12. `http://asymptote.sourceforge.net' - Copyright (C) 2004-10 Andy Hammerlindl, John Bowman, and Tom Prince. + Copyright (C) 2004-11 Andy Hammerlindl, John Bowman, and Tom Prince. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Lesser General Public License @@ -23,11 +23,11 @@ File: asymptote.info, Node: Top, Next: Description, Up: (dir) Asymptote ********* -This file documents `Asymptote', version 2.10. +This file documents `Asymptote', version 2.12. `http://asymptote.sourceforge.net' - Copyright (C) 2004-10 Andy Hammerlindl, John Bowman, and Tom Prince. + Copyright (C) 2004-11 Andy Hammerlindl, John Bowman, and Tom Prince. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Lesser General Public License @@ -6446,7 +6446,7 @@ these palettes to the CMYK colorspace. A color density plot using palette `palette' can be generated from a function `f'(x,y) and added to a picture `pic': -bounds image(picture pic=currentpicture, real f(real,real), +bounds image(picture pic=currentpicture, real f(real, real), range range=Full, pair initial, pair final, int nx=ngraph, int ny=nx, pen[] palette, bool antialias=false) The function `f' will be sampled at `nx' and `ny' evenly spaced points @@ -6562,7 +6562,9 @@ void image(picture pic=currentpicture, pen[][] data, bool transpose=(initial.x < final.x && initial.y < final.y), bool copy=true, bool antialias=false); void image(picture pic=currentpicture, pen f(int, int), int width, int height, - pair initial, pair final, bool antialias=false); + pair initial, pair final, + bool transpose=(initial.x < final.x && initial.y < final.y), + bool antialias=false); as illustrated in the following examples: size(200); @@ -6834,18 +6836,18 @@ There are four choices for viewing 3D `Asymptote' output: at twice the specified resolution; this can be disabled by setting `antialias=1'. High resolution rendering is done by tiling the image. If your graphics card allows it, the rendering can be made - more efficient by increasing the maximum tile size `maxtile' - beyond the screen dimensions (indicated by `maxtile=(0,0)'. If - your video card generates unwanted black stripes in the output, - try setting the horizontal and vertical components of `maxtiles' - to something less than your screen dimensions. The tile size is - also limited by the setting `maxviewport', which restricts the - maximum width and height of the viewport. On `UNIX' systems some - graphics drivers support batch mode (`-noV') rendering in an - iconified window; this can be enabled with the setting - `iconify=true'. Some (broken) `UNIX' graphics drivers may require - the command line setting `-glOptions=-indirect', which requests - (slower) indirect rendering. + more efficient by increasing the maximum tile size `maxtile' to + your screen dimensions (indicated by `maxtile=(0,0)'. If your + video card generates unwanted black stripes in the output, try + setting the horizontal and vertical components of `maxtiles' to + something less than your screen dimensions. The tile size is also + limited by the setting `maxviewport', which restricts the maximum + width and height of the viewport. On `UNIX' systems some graphics + drivers support batch mode (`-noV') rendering in an iconified + window; this can be enabled with the setting `iconify=true'. Some + (broken) `UNIX' graphics drivers may require the command line + setting `-glOptions=-indirect', which requests (slower) indirect + rendering. 3. Embed the 3D PRC format in a PDF file and view the resulting PDF file with version `9.0' or later of `Adobe Reader'. In addition @@ -7951,11 +7953,12 @@ Options (negate by replacing - with -no): -localhistory Use a local interactive history file [false] -loop Loop 3D animations [false] -m,-mask Mask fpu exceptions; command-line only --maxtile pair Maximum rendering tile size [(0,0)] +-maxtile pair Maximum rendering tile size [(1024,768)] -maxviewport pair Maximum viewport size [(2048,2048)] -multiline Input code over multiple lines at the prompt [false] -multipleView View output from multiple batch-mode files [false] -multisample n Multisampling width for screen images [4] +-offscreen Use offscreen rendering [false] -O,-offset pair PostScript offset [(0,0)] -f,-outformat format Convert each output file to specified format -o,-outname name Alternative output directory/filename @@ -8466,9 +8469,9 @@ Index * ---: Bezier curves. (line 83) * -=: Self & prefix operators. (line 6) -* -c: Options. (line 173) -* -l: Options. (line 192) -* -u: Options. (line 183) +* -c: Options. (line 174) +* -l: Options. (line 193) +* -u: Options. (line 184) * -V <1>: Tutorial. (line 19) * -V: Configuring. (line 6) * ..: Tutorial. (line 127) @@ -8531,7 +8534,7 @@ Index (line 48) * alias <1>: Arrays. (line 187) * alias: Structures. (line 52) -* align: Options. (line 167) +* align: Options. (line 168) * Align: label. (line 12) * all: Arrays. (line 335) * Allow: Pens. (line 327) @@ -8544,7 +8547,7 @@ Index * animate: Configuring. (line 67) * animation: animation. (line 6) * annotate: annotate. (line 6) -* antialias <1>: Options. (line 142) +* antialias <1>: Options. (line 143) * antialias: three. (line 210) * antialiasing: Compiling from UNIX source. (line 16) @@ -8591,7 +8594,7 @@ Index * asyinclude: LaTeX usage. (line 44) * asymptote.sty: LaTeX usage. (line 6) * asymptote.xml: Editing modes. (line 49) -* ASYMPTOTE_CONFIG: Options. (line 114) +* ASYMPTOTE_CONFIG: Options. (line 115) * aTan: Mathematical functions. (line 20) * atan: Mathematical functions. @@ -8604,7 +8607,7 @@ Index * attach <1>: graph. (line 415) * attach: LaTeX usage. (line 49) * autoadjust: three. (line 354) -* autoimport: Options. (line 110) +* autoimport: Options. (line 111) * automatic scaling: graph. (line 682) * axialshade: fill. (line 43) * axis <1>: graph3. (line 66) @@ -8741,13 +8744,13 @@ Index * conditional <1>: Arithmetic & logical. (line 73) * conditional: Programming. (line 8) -* config: Options. (line 114) -* configuration file <1>: Options. (line 114) +* config: Options. (line 115) +* configuration file <1>: Options. (line 115) * configuration file: Configuring. (line 23) * configuring: Configuring. (line 6) * conj: Data types. (line 57) * constructors: Structures. (line 91) -* context: Options. (line 142) +* context: Options. (line 143) * continue <1>: Debugger. (line 31) * continue: Programming. (line 29) * contour: contour. (line 9) @@ -8755,11 +8758,11 @@ Index * controls <1>: three. (line 6) * controls: Bezier curves. (line 45) * controlSpecifier: Paths and guides. (line 379) -* convert <1>: Options. (line 142) +* convert <1>: Options. (line 143) * convert <2>: animation. (line 6) * convert <3>: Files. (line 154) * convert: Configuring. (line 67) -* convertOptions: Options. (line 129) +* convertOptions: Options. (line 130) * Coons shading: fill. (line 74) * copy: Arrays. (line 174) * Cos: Mathematical functions. @@ -8852,7 +8855,7 @@ Index * drawline: math. (line 9) * drawtree: drawtree. (line 9) * dvips: Configuring. (line 67) -* dvipsOptions: Options. (line 129) +* dvipsOptions: Options. (line 130) * dvisvgm: Configuring. (line 67) * E <1>: Mathematical functions. (line 48) @@ -8890,7 +8893,7 @@ Index * eof: Files. (line 92) * eol <1>: Arrays. (line 350) * eol: Files. (line 92) -* EPS <1>: Options. (line 142) +* EPS <1>: Options. (line 143) * EPS: label. (line 80) * erase <1>: Frames and pictures. (line 7) * erase <2>: Data types. (line 239) @@ -8964,7 +8967,7 @@ Index * fontcommand: Pens. (line 207) * fontsize: Pens. (line 178) * for: Programming. (line 8) -* format <1>: Options. (line 142) +* format <1>: Options. (line 143) * format: Data types. (line 267) * forum: Help. (line 6) * frame: Frames and pictures. (line 7) @@ -8989,7 +8992,7 @@ Index * getreal: Files. (line 117) * getstring: Files. (line 117) * gettriple: Files. (line 117) -* glOptions <1>: Options. (line 129) +* glOptions <1>: Options. (line 130) * glOptions: three. (line 210) * GNU Scientific Library: Mathematical functions. (line 48) @@ -9011,7 +9014,7 @@ Index (line 48) * GSL: Compiling from UNIX source. (line 58) -* gsOptions: Options. (line 129) +* gsOptions: Options. (line 130) * GUI: GUI. (line 6) * GUI installation: GUI installation. (line 6) * GUI usage: GUI usage. (line 6) @@ -9037,7 +9040,7 @@ Index * HookHead: draw. (line 26) * HookHead3: three. (line 543) * Horizontal: flowchart. (line 81) -* hyperrefOptions: Options. (line 129) +* hyperrefOptions: Options. (line 130) * hypot: Mathematical functions. (line 6) * I: Mathematical functions. @@ -9053,7 +9056,7 @@ Index * if: Programming. (line 8) * IgnoreAspect: Frames and pictures. (line 58) * image: palette. (line 34) -* ImageMagick <1>: Options. (line 142) +* ImageMagick <1>: Options. (line 143) * ImageMagick <2>: animation. (line 6) * ImageMagick: Configuring. (line 67) * images: palette. (line 6) @@ -9132,7 +9135,7 @@ Index * Landscape: Frames and pictures. (line 95) * lastcut: Paths and guides. (line 251) * lasy-mode: Editing modes. (line 6) -* latex: Options. (line 142) +* latex: Options. (line 143) * LaTeX fonts: Pens. (line 192) * LaTeX usage: LaTeX usage. (line 6) * latexmk: LaTeX usage. (line 29) @@ -9267,7 +9270,7 @@ Index * none: Files. (line 60) * None: draw. (line 19) * normal: three. (line 488) -* nosafe: Options. (line 162) +* nosafe: Options. (line 163) * NOT: Arithmetic & logical. (line 80) * notaknot: graph. (line 37) @@ -9284,7 +9287,7 @@ Index * obliqueY: three. (line 334) * obliqueZ: three. (line 319) * ode: ode. (line 9) -* offset <1>: Options. (line 167) +* offset <1>: Options. (line 168) * offset: Pens. (line 115) * OmitTick: graph. (line 239) * OmitTickInterval: graph. (line 239) @@ -9310,7 +9313,7 @@ Index * orthographic: three. (line 338) * outformat: three. (line 127) * outprefix: Frames and pictures. (line 83) -* output <1>: Options. (line 142) +* output <1>: Options. (line 143) * output: Files. (line 35) * OutTicks: graph3. (line 34) * overloading functions: Functions. (line 44) @@ -9338,10 +9341,10 @@ Index * path[]: Tutorial. (line 134) * patterns <1>: patterns. (line 6) * patterns: Pens. (line 238) -* PDF: Options. (line 142) -* pdflatex: Options. (line 142) +* PDF: Options. (line 143) +* pdflatex: Options. (line 143) * pdfviewer: Configuring. (line 6) -* pdfviewerOptions: Options. (line 129) +* pdfviewerOptions: Options. (line 130) * pen: Pens. (line 6) * PenMargin: draw. (line 42) * PenMargin2: three. (line 559) @@ -9391,7 +9394,7 @@ Index (line 6) * psview: Microsoft Windows. (line 16) * psviewer: Configuring. (line 6) -* psviewerOptions: Options. (line 129) +* psviewerOptions: Options. (line 130) * pt: Tutorial. (line 63) * public: Structures. (line 6) * push: Arrays. (line 39) @@ -9435,7 +9438,7 @@ Index * remainder: Mathematical functions. (line 6) * rename: Files. (line 151) -* render <1>: Options. (line 142) +* render <1>: Options. (line 143) * render: three. (line 47) * replace: Data types. (line 252) * resetdefaultpen: Pens. (line 353) @@ -9470,7 +9473,7 @@ Index * runtime imports: Import. (line 98) * Russian: unicode. (line 7) * S: Tutorial. (line 106) -* safe: Options. (line 162) +* safe: Options. (line 163) * save: Frames and pictures. (line 262) * saveline: Files. (line 134) * scale: three. (line 452) @@ -9497,7 +9500,7 @@ Index * self operators: Self & prefix operators. (line 6) * sequence: Arrays. (line 128) -* settings <1>: Options. (line 114) +* settings <1>: Options. (line 115) * settings: Configuring. (line 23) * sgn: Mathematical functions. (line 26) @@ -9527,7 +9530,7 @@ Index * SixViews: three. (line 396) * SixViewsFR: three. (line 396) * SixViewsUS: three. (line 396) -* size <1>: Options. (line 142) +* size <1>: Options. (line 143) * size <2>: three. (line 502) * size <3>: Frames and pictures. (line 43) * size: Paths and guides. (line 70) @@ -9582,9 +9585,9 @@ Index * SuppressQuiet: Pens. (line 335) * surface <1>: graph3. (line 100) * surface: three. (line 47) -* SVG: Options. (line 142) +* SVG: Options. (line 143) * SVN: Subversion. (line 6) -* system <1>: Options. (line 162) +* system <1>: Options. (line 163) * system: Files. (line 159) * syzygy: syzygy. (line 6) * tab: Files. (line 60) @@ -9602,7 +9605,7 @@ Index * tensionSpecifier: Paths and guides. (line 385) * tensor product shading: fill. (line 74) * tensorshade: fill. (line 74) -* tex <1>: Options. (line 142) +* tex <1>: Options. (line 143) * tex: Frames and pictures. (line 278) * TeX fonts: Pens. (line 201) * TeX string: Data types. (line 179) @@ -9720,7 +9723,7 @@ Index * X: three. (line 274) * xasy: GUI. (line 6) * xaxis3: graph3. (line 7) -* xelatex <1>: Options. (line 142) +* xelatex <1>: Options. (line 143) * xelatex: embed. (line 10) * xequals: graph. (line 294) * XEquals: graph. (line 280) @@ -9893,36 +9896,36 @@ Ref: errorbars235104 Ref: automatic scaling239160 Node: palette249806 Ref: images249924 -Ref: image254095 -Ref: logimage254573 -Ref: penimage255551 -Ref: penfunctionimage255772 -Node: three256496 -Ref: PostScript3D281241 -Node: obj282933 -Node: graph3283185 -Ref: GaussianSurface288310 -Node: grid3289414 -Node: solids290154 -Node: tube291102 -Node: flowchart293337 -Node: contour297906 -Node: contour3303031 -Node: slopefield303338 -Node: ode304775 -Node: Options305035 -Ref: configuration file310963 -Ref: settings310963 -Ref: convert312164 -Node: Interactive mode315131 -Ref: history317284 -Node: GUI318589 -Node: GUI installation319092 -Node: GUI usage320222 -Node: PostScript to Asymptote321125 -Node: Help321881 -Node: Debugger323617 -Node: Credits325402 -Node: Index326334 +Ref: image254096 +Ref: logimage254574 +Ref: penimage255635 +Ref: penfunctionimage255856 +Node: three256580 +Ref: PostScript3D281322 +Node: obj283014 +Node: graph3283266 +Ref: GaussianSurface288391 +Node: grid3289495 +Node: solids290235 +Node: tube291183 +Node: flowchart293418 +Node: contour297987 +Node: contour3303112 +Node: slopefield303419 +Node: ode304856 +Node: Options305116 +Ref: configuration file311104 +Ref: settings311104 +Ref: convert312305 +Node: Interactive mode315272 +Ref: history317425 +Node: GUI318730 +Node: GUI installation319233 +Node: GUI usage320363 +Node: PostScript to Asymptote321266 +Node: Help322022 +Node: Debugger323758 +Node: Credits325543 +Node: Index326475 End Tag Table diff --git a/Master/texmf/doc/man/man1/asy.1 b/Master/texmf/doc/man/man1/asy.1 index 2548dbc79d7..7f3d2a40772 100644 --- a/Master/texmf/doc/man/man1/asy.1 +++ b/Master/texmf/doc/man/man1/asy.1 @@ -158,7 +158,7 @@ Loop 3D animations [false]. Mask fpu exceptions; command-line only. .TP .B \-maxtile pair -Maximum rendering tile size [(0,0)]. +Maximum rendering tile size [(1024,768)]. .TP .B \-maxviewport pair Maximum viewport size [(2048,2048)]. @@ -172,6 +172,9 @@ View output from multiple batch-mode files [false]. .B \-multisample n Multisampling width for screen images [4]. .TP +.B \-offscreen +Use offscreen rendering [false]. +.TP .B \-O,\-offset pair PostScript offset [(0,0)]. .TP @@ -206,7 +209,7 @@ Continuation prompt for multiline input [..]. Suppress welcome message [false]. .TP .B \-render n -Render 3D graphics using n pixels per bp (-1=auto) [0]. +Render 3D graphics using n pixels per bp (-1=auto) [-1]. .TP .B \-resizestep step Resize step [1.2]. diff --git a/Master/texmf/doc/man/man1/asy.man1.pdf b/Master/texmf/doc/man/man1/asy.man1.pdf Binary files differindex e3b3344fa34..87d51cd2951 100644 --- a/Master/texmf/doc/man/man1/asy.man1.pdf +++ b/Master/texmf/doc/man/man1/asy.man1.pdf |