diff options
Diffstat (limited to 'Master/texmf-dist/doc/metapost/featpost/example/tropicalglobe.mp')
-rw-r--r-- | Master/texmf-dist/doc/metapost/featpost/example/tropicalglobe.mp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/metapost/featpost/example/tropicalglobe.mp b/Master/texmf-dist/doc/metapost/featpost/example/tropicalglobe.mp new file mode 100644 index 00000000000..fc95e6bde5e --- /dev/null +++ b/Master/texmf-dist/doc/metapost/featpost/example/tropicalglobe.mp @@ -0,0 +1,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; |