1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
% doitnow.mp
% L. Nobre G.
% 2004
%input featpost3Dplus2D;
f := 1.5*(1.5,0,1);
Spread := 100;
beginfig(1);
numeric stagelevel, holediam, outerdiam, stagemargin;
numeric numberofstagesidesquares, stagesidesize;
numeric centercoord;
color centerposdisc, centerpostorus, centerstage;
pickup pencircle scaled 3pt;
stagelevel = 0.2;
holediam = 0.6;
stagemargin = 0.2;
numberofstagesidesquares = 10;
centerstage = (-X(f),-Y(f),-stagelevel);
outerdiam = holediam+4*stagelevel;
stagesidesize = 2*( outerdiam + stagemargin );
centercoord = 0.3535*outerdiam;
HoriZon := -stagelevel;
centerpostorus = ( centercoord, -centercoord, 0 );
centerposdisc = ( -centercoord, centercoord, HoriZon );
getready("setthestage( numberofstagesidesquares, stagesidesize );",
centerstage);
getready("smoothtorus( centerpostorus, blue,0.5*holediam+stagelevel, stagelevel );",centerpostorus);
getready("rigorousdisc( 0.5*holediam, true, centerposdisc,0.5*outerdiam, 1.5*stagelevel*blue );",centerposdisc);
doitnow;
endfig;
end.
|