Fixed docs for asymptote's #:cache cache? option.
This commit is contained in:
parent
8832010717
commit
f84c3ea15a
|
@ -201,16 +201,16 @@ $\sum x^3$ is displayed as-is, like the rest of the text.
|
||||||
|
|
||||||
@defmodule[scribble-math/asymptote]
|
@defmodule[scribble-math/asymptote]
|
||||||
|
|
||||||
@defproc[(asymptote [#:cache cache? any/c] [str string?] ...+) image?]{
|
@defproc[(asymptote [#:cache cache? any/c #t] [str string?] ...+) image?]{
|
||||||
Renders the figure described by the given strings using
|
Renders the figure described by the given strings using
|
||||||
Asymptote. To improve compilation speed, if
|
Asymptote. If @racket[cache?] is @racket[#f], then the
|
||||||
@racket[cache?] is @racket[#f], then the result is cached
|
resulting images are generated into temporary PNG, SVG and
|
||||||
in the @filepath{asymptote-images} directory, based on a
|
PDF files are generated using @racket[make-temporary-file].
|
||||||
checksum of the strings. It is a good idea to clean up the
|
Otherwise, to improve compilation speed, the result is
|
||||||
working directory after experimenting a lot with a figure,
|
cached in the @filepath{asymptote-images} directory, based
|
||||||
as it will be cluttered with stale cached files. Otherwise,
|
on a checksum of the strings. It is a good idea to clean up
|
||||||
temporary PNG, SVG and PDF files are generated using
|
the working directory after experimenting a lot with a
|
||||||
@racket[make-temporary-file].
|
figure, as it will be cluttered with stale cached files.
|
||||||
|
|
||||||
If the Asymptote code is dynamically generated, make sure
|
If the Asymptote code is dynamically generated, make sure
|
||||||
that the result is always the same, or use
|
that the result is always the same, or use
|
||||||
|
|
Loading…
Reference in New Issue
Block a user