Index: head/math/asymptote/Makefile =================================================================== --- head/math/asymptote/Makefile (revision 550277) +++ head/math/asymptote/Makefile (revision 550278) @@ -1,88 +1,91 @@ # Created by: Nicola Vitale # $FreeBSD$ PORTNAME= asymptote -PORTVERSION= 2.56 -PORTREVISION= 3 +PORTVERSION= 2.67 +PORTREVISION= 0 CATEGORIES= math MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} DISTNAME= ${PORTNAME}-${PORTVERSION}.src MAINTAINER= nivit@FreeBSD.org COMMENT= Powerful script-based vector graphics language LICENSE= GPLv3 LGPL3 LICENSE_COMB= dual ONLY_FOR_ARCHS= amd64 i386 -LIB_DEPENDS= libsigsegv.so:devel/libsigsegv -RUN_DEPENDS= animate:graphics/ImageMagick6 \ - gv:print/gv \ - ${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter@${PY_FLAVOR} \ +LIB_DEPENDS= libcurl.so:ftp/curl \ + libsigsegv.so:devel/libsigsegv +RUN_DEPENDS= rsvg-convert:graphics/librsvg2 \ + ${PYTHON_PKGNAMEPREFIX}cson>=0.8:devel/py-cson@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}qt5-svg>0:graphics/py-qt5-svg@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}qt5-widgets>0:x11-toolkits/py-qt5-widgets@${PY_FLAVOR} \ ${PY_PILLOW} -USES= compiler:c++14-lang gettext-runtime ghostscript gl gmake ncurses perl5 python \ +USES= compiler:c++14-lang gettext-runtime ghostscript gl gmake ncurses perl5 python:3.6+ \ shebangfix tar:tgz SHEBANG_FILES= GUI/*.py USE_GL= gl glu glut USE_PERL5= build USE_TEX= dvipsk formats CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes MAKE_ENV= ASYMPTOTE_HOME=${WRKDIR} HOME=${WRKDIR} MAKE_JOBS_UNSAFE= yes ALL_TARGET= asy asy-keywords.el INSTALL_TARGET= install-asy SUB_FILES= pkg-message WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} OPTIONS_DEFAULT= FFTW GSL MANPAGES READLINE OPTIONS_DEFINE= BDWGC DOCS EXAMPLES FFTW GSL MANPAGES OFFSCREEN READLINE BDWGC_LIB_DEPENDS= libgc-threaded.so:devel/boehm-gc-threaded BDWGC_DESC= Enable Boehm-Demers-Weiser garbage collector BDWGC_CONFIGURE_ENABLE= gc=${LOCALBASE} DOCS_ALL_TARGET= html DOCS_BUILD_DEPENDS= texi2dvi:print/texinfo DOCS_CONFIGURE_WITH= docdir=${DOCSDIR} DOCS_INSTALL_TARGET= install-html FFTW_CONFIGURE_ENABLE= fftw FFTW_DESC= Use FFTW to compute the Discrete Fourier Transform FFTW_LIB_DEPENDS= libfftw3.so:math/fftw3 GSL_CONFIGURE_ENABLE= gsl GSL_DESC= Enable GNU Scientific library GSL_LIB_DEPENDS= libgsl.so:math/gsl MANPAGES_ALL_TARGET= man MANPAGES_BUILD_DEPENDS= texi2dvi:print/texinfo MANPAGES_INFO= asy-faq OFFSCREEN_CONFIGURE_ENABLE= offscreen OFFSCREEN_DESC= Enable offscreen rendering using OSMesa library OFFSCREEN_LIB_DEPENDS= libOSMesa.so:graphics/libosmesa READLINE_CONFIGURE_ENABLE= readline READLINE_USES= readline:port +TEST_TARGET= test +TEST_WRKSRC= ${WRKSRC}/tests + post-patch: @${REINPLACE_CMD} 's/-lgc/-lgc-threaded/' ${WRKSRC}/configure - @${REINPLACE_CMD} 's,/usr/lib/libgs.so,${LOCALBASE}/lib/libgs.so,' \ - ${WRKSRC}/settings.cc @${REINPLACE_CMD} 's,makeinfo,${LOCALBASE}/bin/makeinfo,' \ ${WRKSRC}/doc/png/Makefile.in # Fix the python interpreter in the generated file share/asymptote/GUI/xasyVersion.py: - @${REINPLACE_CMD} 's,/usr/bin/env python,${PYTHON_CMD},' ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} 's,/usr/bin/env python3,${PYTHON_CMD},' ${WRKSRC}/Makefile.in post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/asy .include Index: head/math/asymptote/distinfo =================================================================== --- head/math/asymptote/distinfo (revision 550277) +++ head/math/asymptote/distinfo (revision 550278) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570174816 -SHA256 (asymptote-2.56.src.tgz) = 5d43a3e586045e149d077dcc367e30b603e97bd430fbf957d05049f52035851b -SIZE (asymptote-2.56.src.tgz) = 4125617 +TIMESTAMP = 1601134257 +SHA256 (asymptote-2.67.src.tgz) = 8a1e574b81140b3fc1f5be659468bf90a313255a5a548ddd9fd11d4155e72d9b +SIZE (asymptote-2.67.src.tgz) = 4668696 Index: head/math/asymptote/files/patch-xstream.h =================================================================== --- head/math/asymptote/files/patch-xstream.h (revision 550277) +++ head/math/asymptote/files/patch-xstream.h (revision 550278) @@ -1,23 +1,11 @@ ---- xstream.h.orig 2018-06-10 15:14:47 UTC +--- xstream.h.orig 2020-08-06 02:32:59 UTC +++ xstream.h -@@ -31,7 +31,7 @@ - #define quad_t long long - #define u_quad_t unsigned long long - --#if defined(__CYGWIN__) || defined(__FreeBSD__) -+#if defined(__CYGWIN__) - #include - #define u_char unsigned char - #define u_int unsigned int -@@ -41,6 +41,11 @@ extern "C" int fseeko(FILE *, off_t, int +@@ -41,7 +41,7 @@ extern "C" int fseeko(FILE *, off_t, int); extern "C" off_t ftello(FILE *); - #endif + #endif -+#ifdef __FreeBSD__ -+#define xdr_longlong_t xdr_int64_t -+#define xdr_u_longlong_t xdr_u_int64_t -+#endif -+ - #ifdef _POSIX_SOURCE - #undef _POSIX_SOURCE - #include +-#ifdef __APPLE__ ++if defined(__APPLE__) || defined(__FreeBSD__) + #include + + inline bool_t xdr_long(XDR *__xdrs, long *__lp) { Index: head/math/asymptote/pkg-plist =================================================================== --- head/math/asymptote/pkg-plist (revision 550277) +++ head/math/asymptote/pkg-plist (revision 550278) @@ -1,592 +1,595 @@ bin/asy bin/xasy -share/info/asymptote/Bode.png -share/info/asymptote/CAD1.png -share/info/asymptote/CDlabel.png -share/info/asymptote/GaussianSurface.png -share/info/asymptote/HermiteSpline.png -share/info/asymptote/Hobbycontrol.png -share/info/asymptote/Hobbydir.png -share/info/asymptote/asymptote.info -share/info/asymptote/axis3.png -share/info/asymptote/bezier.png -share/info/asymptote/bezier2.png -share/info/asymptote/beziercurve.png -share/info/asymptote/bigdiagonal.png -share/info/asymptote/binarytreetest.png -share/info/asymptote/brokenaxis.png -share/info/asymptote/colons.png -share/info/asymptote/colors.png -share/info/asymptote/cube.png -share/info/asymptote/cylinderskeleton.png -share/info/asymptote/datagraph.png -share/info/asymptote/diagonal.png -share/info/asymptote/diatom.png -share/info/asymptote/dots.png -share/info/asymptote/eetomumu.png -share/info/asymptote/elliptic.png -share/info/asymptote/errorbars.png -share/info/asymptote/exp.png -share/info/asymptote/filegraph.png -share/info/asymptote/flow.png -share/info/asymptote/flowchartdemo.png -share/info/asymptote/generalaxis.png -share/info/asymptote/generalaxis3.png -share/info/asymptote/graphmarkers.png -share/info/asymptote/grid3xyz.png -share/info/asymptote/hatch.png -share/info/asymptote/helix.png -share/info/asymptote/histogram.png -share/info/asymptote/icon.png -share/info/asymptote/image.png -share/info/asymptote/imagecontour.png -share/info/asymptote/irregularcontour.png -share/info/asymptote/join.png -share/info/asymptote/join3.png -share/info/asymptote/knots.png -share/info/asymptote/labelsquare.png -share/info/asymptote/latexusage.png -share/info/asymptote/leastsquares.png -share/info/asymptote/legend.png -share/info/asymptote/lineargraph.png -share/info/asymptote/lineargraph0.png -share/info/asymptote/linetype.png -share/info/asymptote/log2graph.png -share/info/asymptote/loggraph.png -share/info/asymptote/loggrid.png -share/info/asymptote/logimage.png -share/info/asymptote/logo.png -share/info/asymptote/logticks.png -share/info/asymptote/makepen.png -share/info/asymptote/markers1.png -share/info/asymptote/markers2.png -share/info/asymptote/mexicanhat.png -share/info/asymptote/monthaxis.png -share/info/asymptote/multicontour.png -share/info/asymptote/onecontour.png -share/info/asymptote/parametricgraph.png -share/info/asymptote/penfunctionimage.png -share/info/asymptote/penimage.png -share/info/asymptote/planes.png -share/info/asymptote/quartercircle.png -share/info/asymptote/saddle.png -share/info/asymptote/scaledgraph.png -share/info/asymptote/secondaryaxis.png -share/info/asymptote/shadedtiling.png -share/info/asymptote/slopefield1.png -share/info/asymptote/square.png -share/info/asymptote/subpictures.png -share/info/asymptote/superpath.png -share/info/asymptote/tile.png -share/info/asymptote/triangulate.png -share/info/asymptote/unitcircle3.png -share/info/asymptote/vectorfield.png -share/info/asymptote/westnile.png man/man1/asy.1.gz man/man1/xasy.1x.gz %%DATADIR%%/CAD.asy %%DATADIR%%/GUI/CustMatTransform.py %%DATADIR%%/GUI/DebugFlags.py %%DATADIR%%/GUI/GuidesManager.py %%DATADIR%%/GUI/InplaceAddObj.py %%DATADIR%%/GUI/PrimitiveShape.py %%DATADIR%%/GUI/SetCustomAnchor.py %%DATADIR%%/GUI/UndoRedoStack.py %%DATADIR%%/GUI/Widg_addLabel.py %%DATADIR%%/GUI/Widg_addPolyOpt.py %%DATADIR%%/GUI/Widg_editBezier.py %%DATADIR%%/GUI/Window1.py %%DATADIR%%/GUI/__init__.py %%DATADIR%%/GUI/configs/xasyconfig.cson %%DATADIR%%/GUI/configs/xasykeymap.cson %%DATADIR%%/GUI/icons_rc.py %%DATADIR%%/GUI/labelEditor.py %%DATADIR%%/GUI/pyUIClass/custMatTransform.py %%DATADIR%%/GUI/pyUIClass/labelTextEditor.py %%DATADIR%%/GUI/pyUIClass/setCustomAnchor.py %%DATADIR%%/GUI/pyUIClass/widg_addLabel.py %%DATADIR%%/GUI/pyUIClass/widg_addPolyOpt.py %%DATADIR%%/GUI/pyUIClass/widg_editBezier.py %%DATADIR%%/GUI/pyUIClass/widgetPointEditor.py %%DATADIR%%/GUI/pyUIClass/window1.py %%DATADIR%%/GUI/res/icons.qrc %%DATADIR%%/GUI/res/icons/anchor.svg %%DATADIR%%/GUI/res/icons/android-arrow-back.svg %%DATADIR%%/GUI/res/icons/android-arrow-forward.svg %%DATADIR%%/GUI/res/icons/android-camera.svg %%DATADIR%%/GUI/res/icons/android-close.svg %%DATADIR%%/GUI/res/icons/android-color-palette.svg %%DATADIR%%/GUI/res/icons/android-delete.svg %%DATADIR%%/GUI/res/icons/android-done.svg %%DATADIR%%/GUI/res/icons/android-expand.svg %%DATADIR%%/GUI/res/icons/android-folder-open.svg %%DATADIR%%/GUI/res/icons/android-hand.svg %%DATADIR%%/GUI/res/icons/android-locate.svg %%DATADIR%%/GUI/res/icons/android-radio-button-off.svg %%DATADIR%%/GUI/res/icons/android-radio-button-on.svg %%DATADIR%%/GUI/res/icons/android-refresh.svg %%DATADIR%%/GUI/res/icons/arrow-move.svg %%DATADIR%%/GUI/res/icons/arrow-resize.svg %%DATADIR%%/GUI/res/icons/bucket.svg %%DATADIR%%/GUI/res/icons/center.svg %%DATADIR%%/GUI/res/icons/centerorigin.svg %%DATADIR%%/GUI/res/icons/check.svg %%DATADIR%%/GUI/res/icons/chevron-with-circle-left.svg %%DATADIR%%/GUI/res/icons/chevron-with-circle-right.svg %%DATADIR%%/GUI/res/icons/circle.svg %%DATADIR%%/GUI/res/icons/close-round.svg %%DATADIR%%/GUI/res/icons/closedcurve.svg %%DATADIR%%/GUI/res/icons/closedpolygon.svg %%DATADIR%%/GUI/res/icons/code.svg %%DATADIR%%/GUI/res/icons/edit.svg %%DATADIR%%/GUI/res/icons/eye.svg %%DATADIR%%/GUI/res/icons/filledbucket.svg %%DATADIR%%/GUI/res/icons/grid.svg %%DATADIR%%/GUI/res/icons/magnifying-glass.svg %%DATADIR%%/GUI/res/icons/opencurve.svg %%DATADIR%%/GUI/res/icons/openpolygon.svg %%DATADIR%%/GUI/res/icons/plus-round.svg %%DATADIR%%/GUI/res/icons/save.svg %%DATADIR%%/GUI/res/icons/social-python.svg %%DATADIR%%/GUI/res/icons/subdirectory-left.svg %%DATADIR%%/GUI/res/icons/text.svg %%DATADIR%%/GUI/res/icons/triangle-stroked-15.svg %%DATADIR%%/GUI/setup.py %%DATADIR%%/GUI/xasy.py %%DATADIR%%/GUI/xasy2asy.py %%DATADIR%%/GUI/xasyArgs.py %%DATADIR%%/GUI/xasyBezierInterface.py %%DATADIR%%/GUI/xasyFile.py %%DATADIR%%/GUI/xasyOptions.py %%DATADIR%%/GUI/xasyStrings.py %%DATADIR%%/GUI/xasySvg.py %%DATADIR%%/GUI/xasyTransform.py %%DATADIR%%/GUI/xasyUtils.py %%DATADIR%%/GUI/xasyValidator.py %%DATADIR%%/GUI/xasyVersion.py %%DATADIR%%/animate.asy %%DATADIR%%/animation.asy %%DATADIR%%/annotate.asy %%DATADIR%%/asy-init.el %%DATADIR%%/asy-kate.sh %%DATADIR%%/asy-keywords.el %%DATADIR%%/asy-mode.el %%DATADIR%%/asy.vim %%DATADIR%%/asy_filetype.vim %%DATADIR%%/asymptote.py %%DATADIR%%/babel.asy %%DATADIR%%/bezulate.asy %%DATADIR%%/binarytree.asy %%DATADIR%%/bsp.asy %%DATADIR%%/colormap.asy %%DATADIR%%/contour.asy %%DATADIR%%/contour3.asy %%DATADIR%%/drawtree.asy %%DATADIR%%/embed.asy %%DATADIR%%/external.asy %%DATADIR%%/feynman.asy %%DATADIR%%/flowchart.asy %%DATADIR%%/fontsize.asy %%DATADIR%%/geometry.asy %%DATADIR%%/graph.asy %%DATADIR%%/graph3.asy %%DATADIR%%/graph_settings.asy %%DATADIR%%/graph_splinetype.asy %%DATADIR%%/grid3.asy %%DATADIR%%/interpolate.asy %%DATADIR%%/labelpath.asy %%DATADIR%%/labelpath3.asy -%%DATADIR%%/latin1.asy %%DATADIR%%/lmfit.asy +%%DATADIR%%/map.asy %%DATADIR%%/markers.asy %%DATADIR%%/math.asy %%DATADIR%%/metapost.asy %%DATADIR%%/nopapersize.ps %%DATADIR%%/obj.asy %%DATADIR%%/ode.asy %%DATADIR%%/palette.asy %%DATADIR%%/patterns.asy %%DATADIR%%/plain.asy %%DATADIR%%/plain_Label.asy %%DATADIR%%/plain_arcs.asy %%DATADIR%%/plain_arrows.asy %%DATADIR%%/plain_bounds.asy %%DATADIR%%/plain_boxes.asy %%DATADIR%%/plain_constants.asy %%DATADIR%%/plain_debugger.asy %%DATADIR%%/plain_filldraw.asy %%DATADIR%%/plain_margins.asy %%DATADIR%%/plain_markers.asy %%DATADIR%%/plain_paths.asy %%DATADIR%%/plain_pens.asy %%DATADIR%%/plain_picture.asy %%DATADIR%%/plain_prethree.asy %%DATADIR%%/plain_scaling.asy %%DATADIR%%/plain_shipout.asy %%DATADIR%%/plain_strings.asy %%DATADIR%%/pstoedit.asy %%DATADIR%%/rational.asy %%DATADIR%%/rationalSimplex.asy %%DATADIR%%/reload.js %%DATADIR%%/roundedpath.asy %%DATADIR%%/shaders/fragment.glsl %%DATADIR%%/shaders/vertex.glsl %%DATADIR%%/simplex.asy %%DATADIR%%/size10.asy %%DATADIR%%/size11.asy %%DATADIR%%/slide.asy %%DATADIR%%/slopefield.asy %%DATADIR%%/smoothcontour3.asy %%DATADIR%%/solids.asy %%DATADIR%%/stats.asy %%DATADIR%%/syzygy.asy %%DATADIR%%/texcolors.asy %%DATADIR%%/three.asy %%DATADIR%%/three_arrows.asy %%DATADIR%%/three_light.asy %%DATADIR%%/three_margins.asy %%DATADIR%%/three_surface.asy %%DATADIR%%/three_tube.asy %%DATADIR%%/tree.asy %%DATADIR%%/trembling.asy %%DATADIR%%/tube.asy -%%DATADIR%%/unicode.asy %%DATADIR%%/version.asy -%%DATADIR%%/webgl/WebGLfooter.html -%%DATADIR%%/webgl/WebGLheader.html -%%DATADIR%%/webgl/asygl-1.00.js +%%DATADIR%%/webgl/asygl.js %%DATADIR%%/x11colors.asy %%PORTDOCS%%%%DOCSDIR%%/CAD.pdf %%PORTDOCS%%%%DOCSDIR%%/TeXShopAndAsymptote.pdf %%PORTDOCS%%%%DOCSDIR%%/asy-latex.pdf %%PORTDOCS%%%%DOCSDIR%%/asyRefCard.pdf %%PORTDOCS%%%%DOCSDIR%%/asymptote.pdf +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/100d.pdb1 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/100d.views %%PORTEXAMPLES%%%%EXAMPLESDIR%%/1overx.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/BezierPatch.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/BezierSaddle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/BezierSurface.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/BezierTriangle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Bode.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/CAD1.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/CDlabel.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Coons.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/GaussianSurface.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Gouraud.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Gouraudcontour.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/HermiteSpline.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Hobbycontrol.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Hobbydir.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Klein.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/NURBScurve.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/NURBSsphere.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/NURBSsurface.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Pythagoras.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/PythagoreanTree.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/RiemannSphere.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/RiemannSurface.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/RiemannSurfaceRoot.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Sierpinski.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/SierpinskiGasket.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/SierpinskiSponge.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/advection.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/alignbox.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/alignedaxis.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/cube.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/earthmoon.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/embeddedmovie.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/embeddedu3d.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/externalmovie.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/glmovie.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/heatequation.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/inlinemovie.tex %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/inlinemovie3.tex %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/pdfmovie.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/slidemovies.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/sphere.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/torusanimation.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/wavepacket.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/animations/wheel.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/annotation.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/arrows3.asy +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axialshade.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/axis3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/bars3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/basealign.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/bezier.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/bezier2.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/beziercurve.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/bigdiagonal.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/billboard.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/binarytreetest.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/brokenaxis.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/buildcycle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cardioid.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cards.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/centroidfg.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cheese.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/circles.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/circumcircle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/clockarray.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/coag.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/colons.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/colorpatch.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/colorplanes.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/colors.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/condor.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cones.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/conicurv.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/contextfonts.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/controlsystem.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cos2theta.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cos3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cosaddition.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cpkcolors.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cube.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curvedlabel.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curvedlabel3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cyclohexane.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cylinder.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cylinderskeleton.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/datagraph.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/delu.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/diagonal.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/diatom.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/diatom.csv %%PORTEXAMPLES%%%%EXAMPLESDIR%%/dimension.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/dots.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/dragon.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/eetomumu.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/electromagnetic.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/elevation.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/elliptic.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/epix.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/equilateral.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/equilchord.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/errorbars.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/exp.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/exp3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/externalprc.tex %%PORTEXAMPLES%%%%EXAMPLESDIR%%/extrudedcontour.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fano.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fequlogo.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fermi.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/filegraph.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/filegraph.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/filesurface.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/filesurface.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fillcontour.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fin.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fjortoft.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/floatingdisk.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/floor.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/flow.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/flowchartdemo.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fractaltree.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/functionshading.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/galleon.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/gamma.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/gamma3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/generalaxis.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/generalaxis3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/genusthree.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/genustwo.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphmarkers.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/grid.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/grid3xyz.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/hatch.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/helix.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/hierarchy.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/histogram.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/hyperboloid.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/hyperboloidsilhouette.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/icon.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/image.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/imagecontour.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/imagehistogram.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/impact.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/integraltest.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/interpolate1.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/intro.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/irregularcontour.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/join.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/join3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/jump.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/knots.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/label3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/label3ribbon.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/label3solid.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/label3zoom.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/labelbox.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/labelsquare.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/laserlattice.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/latexusage-1.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/latexusage-2.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/latexusage-3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/latexusage.tex %%PORTEXAMPLES%%%%EXAMPLESDIR%%/latticeshading.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/layers.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/leastsquares.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/leastsquares.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/legend.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lever.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/limit.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lineargraph.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lineargraph0.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/linearregression.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lines.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/linetype.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lmfit1.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/log.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/log2graph.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/logdown.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/loggraph.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/loggrid.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/logimage.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/logo.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/logo3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/logticks.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lowint.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/lowupint.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/magnetic.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/makepen.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/markers1.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/markers2.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/markregular.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mergeExample.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mexicanhat.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/monthaxis.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mosaic.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mosquito.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/multicontour.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/near_earth.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/odetest.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/onecontour.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/oneoverx.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/orthocenter.asy -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/p-orbital.asy +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pOrbital.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/parametricelevation.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/parametricgraph.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/parametricsurface.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/partialsurface.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/partitionExample.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pathintersectsurface.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdb.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/penfunctionimage.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/penimage.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/phase.asy -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/piicon.eps +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/piicon.png %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pipeintersection.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pipes.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pixel.pdf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/planeproject.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/planes.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/polararea.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/polarcircle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/polardatagraph.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/poster.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/progrid.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/projectelevation.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/projectrevolution.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pseudosphere.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/quartercircle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/quilt.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rainbow.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/randompath3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/refs.bib %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ring.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/roll.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/roundpath.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sacone.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sacone3D.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sacylinder.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sacylinder3D.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/saddle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/scaledgraph.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/secondaryaxis.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/secondaryaxis.csv %%PORTEXAMPLES%%%%EXAMPLESDIR%%/shade.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/shadedtiling.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/shadestroke.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/shellmethod.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/shellsqrtx01.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sin1x.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sin3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sinc.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sinxlex.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/slidedemo.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/slope.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/slopefield1.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/smoothelevation.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/soccerball.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/spectrum.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sphere.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/spheresilhouette.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sphereskeleton.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sphericalharmonic.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/spiral.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/spiral3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/spline.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/splitpatch.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/spring.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/spring0.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/spring2.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sqrtx01.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sqrtx01y1.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/square.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/star.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/stereoscopic.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/stroke3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/strokepath.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/strokeshade.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/subpictures.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/superpath.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tanh.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/teapot.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tensor.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tetra.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/textpath.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/thermodynamics.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/threeviews.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tile.asy +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tiling.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/torus.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/transparency.asy +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/transparentCubes.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/treetest.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/trefoilknot.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/triads.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/triangle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/triangles.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/triangulate.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/triceratops.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/trumpet.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/truncatedIcosahedron.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tvgen.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/twistedtubes.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/unitcircle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/unitcircle3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/unitoctant.asy +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unitoctantx.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/upint.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vectorfield.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vectorfield3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vectorfieldsphere.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/venn.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/venn3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vertexshading.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/washer.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/washermethod.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/wedge.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/westnile.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/westnile.csv %%PORTEXAMPLES%%%%EXAMPLESDIR%%/workcone.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/worksheet.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/worldmap.asy +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/worldmap.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/xsin1x.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/xstitch.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/xxsq01.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/xxsq01x-1.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/xxsq01y.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/yingyang.asy +share/info/asymptote/Bode.png +share/info/asymptote/CAD1.png +share/info/asymptote/CDlabel.png +share/info/asymptote/GaussianSurface.png +share/info/asymptote/HermiteSpline.png +share/info/asymptote/Hobbycontrol.png +share/info/asymptote/Hobbydir.png +share/info/asymptote/asymptote.info +share/info/asymptote/axis3.png +share/info/asymptote/bezier.png +share/info/asymptote/bezier2.png +share/info/asymptote/beziercurve.png +share/info/asymptote/bigdiagonal.png +share/info/asymptote/binarytreetest.png +share/info/asymptote/brokenaxis.png +share/info/asymptote/colons.png +share/info/asymptote/colors.png +share/info/asymptote/cube.png +share/info/asymptote/cylinderskeleton.png +share/info/asymptote/datagraph.png +share/info/asymptote/diagonal.png +share/info/asymptote/diatom.png +share/info/asymptote/dots.png +share/info/asymptote/eetomumu.png +share/info/asymptote/elliptic.png +share/info/asymptote/errorbars.png +share/info/asymptote/exp.png +share/info/asymptote/filegraph.png +share/info/asymptote/flow.png +share/info/asymptote/flowchartdemo.png +share/info/asymptote/generalaxis.png +share/info/asymptote/generalaxis3.png +share/info/asymptote/graphmarkers.png +share/info/asymptote/grid3xyz.png +share/info/asymptote/hatch.png +share/info/asymptote/helix.png +share/info/asymptote/histogram.png +share/info/asymptote/icon.png +share/info/asymptote/image.png +share/info/asymptote/imagecontour.png +share/info/asymptote/irregularcontour.png +share/info/asymptote/join.png +share/info/asymptote/join3.png +share/info/asymptote/knots.png +share/info/asymptote/labelsquare.png +share/info/asymptote/latexusage.png +share/info/asymptote/leastsquares.png +share/info/asymptote/legend.png +share/info/asymptote/lineargraph.png +share/info/asymptote/lineargraph0.png +share/info/asymptote/linetype.png +share/info/asymptote/log2graph.png +share/info/asymptote/loggraph.png +share/info/asymptote/loggrid.png +share/info/asymptote/logimage.png +share/info/asymptote/logo.png +share/info/asymptote/logticks.png +share/info/asymptote/makepen.png +share/info/asymptote/markers1.png +share/info/asymptote/markers2.png +share/info/asymptote/mexicanhat.png +share/info/asymptote/monthaxis.png +share/info/asymptote/multicontour.png +share/info/asymptote/onecontour.png +share/info/asymptote/parametricgraph.png +share/info/asymptote/penfunctionimage.png +share/info/asymptote/penimage.png +share/info/asymptote/planes.png +share/info/asymptote/quartercircle.png +share/info/asymptote/saddle.png +share/info/asymptote/scaledgraph.png +share/info/asymptote/secondaryaxis.png +share/info/asymptote/shadedtiling.png +share/info/asymptote/slopefield1.png +share/info/asymptote/square.png +share/info/asymptote/subpictures.png +share/info/asymptote/superpath.png +share/info/asymptote/tile.png +share/info/asymptote/triangulate.png +share/info/asymptote/unitcircle3.png +share/info/asymptote/vectorfield.png +share/info/asymptote/westnile.png %%TEXMFLOCALDIR%%/tex/context/third/asymptote/colo-asy.tex %%TEXMFLOCALDIR%%/tex/latex/asymptote/asycolors.sty %%TEXMFLOCALDIR%%/tex/latex/asymptote/asymptote.sty %%TEXMFLOCALDIR%%/tex/latex/asymptote/latexmkrc %%TEXMFLOCALDIR%%/tex/latex/asymptote/ocg.sty