漸近線: 表面の白い隙間

漸近線: 表面の白い隙間

私の質問と答え、うまくコンパイルされた Asymptote コードをいくつか提供しました。同じコードをコンパイルすると、異なる出力が得られます。

ここで、コードは繰り返され、古い回答と同一です。

\documentclass[convert]{standalone}

\usepackage{asymptote}

\begin{document}

\begin{asy}
    settings.prc = false;
    settings.render = 0;
    unitsize(1cm);
    fontsize(11pt);
    size(5cm);

    import graph3;
    import palette;

    currentprojection=orthographic(-0.8,-1.1,0.8);
    int angles = 60;
    int radii = 15;

    triple f(pair z) { // using polar coordinates
        return (z.x * cos(z.y), z.x * sin(z.y), sqrt(z.x) * cos(z.y/2));
    }

    triple c(pair z) { // using polar coordinates
        return (z.x * cos(z.y), z.x * sin(z.y), sqrt(z.x) * sin(z.y/2));
    }

    surface s = surface(f, (0,-pi), (1,3pi), nu=radii, nv=angles, Spline);
    pen[][] p = palette(surface(c, (0,-pi), (1,3pi), nu=radii, nv=angles).map(zpart), Wheel());
    draw(s, mean(p), meshpen=black+linewidth(0.2pt));

    xaxis3(Bounds(Min, Min), -1, 1, OutTicks(2,2));
    yaxis3(Bounds(Min, Min), -1, 1, OutTicks(2,2));
    zaxis3(Bounds(Min, Max), -1, 1, OutTicks(2,2));
\end{asy}

\end{document}

新しい出力は次のとおりです。

ここに画像の説明を入力してください

ご覧のとおり、表面には白い隙間がたくさんありますが、これは以前の回答には存在しませんでした。コンパイルに使用した古い Asymptote バージョンは覚えていません。

現在の Asymptote バージョンでこれを修正するにはどうすればいいでしょうか? ありますAsymptote version 2.89git

関連情報