File: pipeintersection.asy

package info (click to toggle)
asymptote 2.38-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 11,908 kB
  • ctags: 13,089
  • sloc: cpp: 60,286; ansic: 4,754; python: 3,909; sh: 3,363; perl: 1,563; lisp: 1,363; makefile: 606; yacc: 554; lex: 444
file content (13 lines) | stat: -rw-r--r-- 362 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
import graph3;

currentprojection=orthographic(5,4,2);

size(12cm,0);

real f(pair z) {return min(sqrt(1-z.x^2),sqrt(1-z.y^2));}

surface s=surface(f,(0,0),(1,1),40,Spline);

transform3 t=rotate(90,O,Z), t2=t*t, t3=t2*t, i=xscale3(-1)*zscale3(-1);
draw(surface(s,t*s,t2*s,t3*s,i*s,i*t*s,i*t2*s,i*t3*s),blue,
     render(compression=Low,closed=true,merge=true));