I have another computer, where I have freshly installed Windows 11 and TeXLive 2025, without extras (e.g. seperate Asymptote or GS). The problem still exists in the clean and bare minimum installation.
I have another computer, where I have freshly installed Windows and TeXLive 2025, without extras (e.g. seperate Asymptote or GS). The problems still exists in the clean and bare minimum installation.
Below is the output of asy testasy.asy -vvv: D:/texlive/2025/texmf-dist Using configuration directory C:\Users\baris\.asy Using history C:\Users\baris\.asy/history Welcome to Asymptote version 3.04 cd D:\latextest\asymptote Processing testasy Loading plain from D:/texlive/2025/texmf-dist\asymptote/plain.asy Including plain_constants from D:/texlive/2025/texmf-dist\asymptote/plain_constants.asy Loading version from D:/texlive/2025/texmf-dist\asymptote/version.asy Including plain_strings from D:/texlive/2025/texmf-dist\asymptote/plain_strings.asy...
I have several asymptote files that were working just fine. Now I am having difficulty to make them work. I am not sure if this is related to a newer version of Asymptote or to a setting I have changed in my computer or to a program I have installed that conflicts with Asymptote. Here is is MWE settings.outformat="pdf"; settings.prc=false; settings.render=0; import graph3; size(4cm,0); path3 myarc = rotate(18,Z) * Arc(c=O, normal=X, v1=-Z, v2=Z, n=10); surface backHemisphere = surface(myarc, angle1=0,...
Below is the output of asy test.asy -vvv: D:/texlive/2025/texmf-dist Using configuration directory C:\Users\baris\.asy Using history C:\Users\baris\.asy/history Welcome to Asymptote version 3.04 cd D:\latextest\asymptote Processing testasy Loading plain from D:/texlive/2025/texmf-dist\asymptote/plain.asy Including plain_constants from D:/texlive/2025/texmf-dist\asymptote/plain_constants.asy Loading version from D:/texlive/2025/texmf-dist\asymptote/version.asy Including plain_strings from D:/texlive/2025/texmf-dist\asymptote/plain_strings.asy...
I have several asymptote files that were working just fine. Now I am having difficulty to make them work. I am not sure if this is related to a newer version of Asymptote or to a setting I have changed in my computer or to a program I have installed that conflicts with Asymptote. Here is is MWE settings.outformat="pdf"; settings.prc=false; settings.render=0; import graph3; size(4cm,0); path3 myarc = rotate(18,Z) * Arc(c=O, normal=X, v1=-Z, v2=Z, n=10); surface backHemisphere = surface(myarc, angle1=0,...
I can obtain hatch for simple 2D paths: settings.outformat="pdf"; unitsize(1cm); import patterns; path aaa = (0,0)..(3,-1)..(6,0)--cycle; add("hatch", hatch()); filldraw(aaa, pattern("hatch")); shipout(currentpicture.fit()); If I want to do the same thing in 3D, with path3, it does not work: settings.outformat="pdf"; settings.render=16; settings.prc = false; unitsize(1cm); import graph3; import three; import patterns; add("hatch", hatch()); path3 bbb = (0,0,0)..(3,-1,0)..(6,0,0)--cycle; draw(bbb,...
My SE post repeated here: Consider the MWE given below: import graph3; path3 bottom = (0,0,0) -- (1,0,0) -- (1,1,0) -- (0,1,0) -- cycle; draw(extrude(bottom, 5*Z), white); This generates a solid with surfaces (see the first picture below). Is there a way to mark the edges of the generated surface with lines automatically (see the second picture below)? I can draw the bottom and top surface lines using regular draw, but I am wondering if I can draw the edges of the extruded surface automatically.