summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/metapost/featpost/example/standard/tropicalglobe.mp
blob: e861c8c4462db99dee50128de2747b1f2e666c14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
% tropicalglobe.mp
% L. Nobre G. 
% 2003

%input featpost3Dplus2D;

beginfig(1);
  numeric radius, numc;
  pen thickp;
  
  f 			:= (3,0,2);
  viewcentr           := 0.5*(1,1,1);
  Spread 		:= 20;
  radius		= 1;
  numc		= 18;
  thickp		= pencircle scaled 1mm;
  
  drawoptions( withpen thickp );
  tropicalglobe( numc, black, radius, blue );
  produce_auto_scale;
endfig;

end;