home *** CD-ROM | disk | FTP | other *** search
/ Photo CD Demo 1 / Demo.bin / inetray / mole.ray < prev    next >
Text File  |  1992-06-19  |  18KB  |  940 lines

  1. /*======================================================================
  2.                     M O L E . R A Y 
  3.                     doc: Fri Mar 13 18:23:23 1992
  4.                     dlm: Fri Jun 12 12:03:51 1992
  5.                     (c) 1992 ant@ips.ethz.ch
  6.                     uE-Info: 13 51 T 0 0 72 10 2 8 ofnI
  7. ======================================================================*/
  8.  
  9. /* This file was produced by Thomas Koller (koller@ips.id.ethz.ch) for 
  10.    a ``scientific'' visualization. The molecule featured has been calculated
  11.    on a CRAY YMP with a SGI frontend.
  12.    Raytraceing this file needs loadsa CPU time. It is therefore included
  13.    as an example in the distribution of Inetray. */
  14.  
  15. #define    SCREEN 780 780
  16.  
  17. /***************************************************
  18.  * Thomas Koller
  19.  * 04-Apr-91
  20.  *
  21.  * new :
  22.  * 03-Sep-91
  23.  *
  24.  * raytraced molecules
  25.  *
  26.  **************************************************/
  27.  
  28. /* defines */
  29. define Sphere_Apart  1.9    /* how much the spheres are apart */
  30. define Sphere_Radius 0.4    /* Radius of spheres */
  31. define Disc_Radius   9.0
  32.  
  33. surface H            /* Materials */
  34.     ambient    0.0 0.0 0.2
  35.     diffuse    0.0 0.0 0.8
  36.     specular    0.5 0.5 0.5
  37.     specpow    18.
  38.     reflect    0.3
  39.  
  40. surface O
  41.     ambient    0.2 0.0 0.0
  42.     diffuse    0.7 0.0 0.0
  43.     specular    0.5 0.5 0.5
  44.     specpow    14.
  45.     reflect    0.3
  46.     
  47. surface C
  48.     ambient    0.0 0.0 0.0
  49.     diffuse    0.0 0.0 0.0
  50.     specular    0.5 0.5 0.5
  51.     specpow    18
  52.     reflect    0.3
  53.  
  54. surface Fe
  55.     ambient    0.3 0.3 0.4
  56.     diffuse    0.5 0.5 0.8
  57.     specular    0.5 0.5 0.5
  58.     specpow    18
  59.     reflect    0.3
  60.  
  61. surface Zn
  62.     ambient    0.2 0.2 0.2
  63.     diffuse    0.3 0.3 0.3
  64.     specular    0.3 0.3 0.3
  65.     specpow    18
  66.     reflect    0.6
  67.  
  68. surface glass 
  69.     specular 0.8 0.8 0.8 
  70.     specpow 18 
  71.     reflect 0.1 
  72.     transp 0.7 index 1.15 
  73.  
  74. surface dull_white             
  75.     ambient 0.5 0.5 0.5 
  76.     diffuse 0.5 0.5 0.5
  77.  
  78. surface gold
  79.     ambient 0.05 0.025 0 
  80.     diffuse 0.15 0.05 0.0 
  81.     specular 0.3 0.3 0.3 
  82.     specpow 18 
  83.     reflect 0.00
  84.     
  85. surface light_ambient_blue 
  86.     ambient 0.3 0.4 0.6 
  87.  
  88. /* screen & file parameters */
  89.  
  90. outfile        mole.rle
  91. screen        SCREEN
  92. report        
  93.  
  94. /* tracing prameters */
  95.  
  96. /* contrast    0.25   0.2   0.4 */
  97.  
  98. maxdepth    5
  99. cutoff        0.001
  100.  
  101.  
  102. /* image parameters */
  103.  
  104. /* view parameters */
  105. background  0.1        0.1        0.5
  106. lookp        0.        0        5.0
  107. fov        40.0
  108.  
  109. /* up view 
  110. eyep        0        0        40.0
  111. up        0        1        0
  112. */
  113.  
  114. /* normal view */
  115. eyep        0        -28.0   4.5
  116. up        0        0        1
  117.  
  118. /* atmosphere */
  119.  
  120. atmosphere
  121.     fog .3 .3 .1 800.0 800.0 800.0
  122.  
  123. /* light sources */
  124. light    1.0         point  6. -5. 10.    
  125. light   1.0 1.0 .7         point -120. 390 5.0
  126.  
  127. /* additional surfaces */
  128.  
  129. surface water_blue
  130.     ambient    0.0 0.0 0.1
  131.     diffuse     0.0 0.0 0.1
  132.     specular    0.3 0.3 0.3
  133.     specpow     15.0
  134.     reflect     0.3
  135.  
  136. surface water_green
  137.     ambient    0.0 0.1 0.0
  138.     diffuse     0.0 0.1 0.0
  139.     specular    0.3 0.3 0.3
  140.     specpow     15.0
  141.     reflect     0.3
  142.  
  143. surface Disc
  144.     ambient    0.0 0.0 0.0
  145.     diffuse     0.0 0.00 0.05
  146.     specular    0.3 0.3 0.3
  147.     specpow     15.0
  148.     reflect     0.7
  149.  
  150. surface Sun
  151.     ambient     .8 .8 .7
  152.     diffuse     .0 .0 .0
  153.     specular    .0 .0 .0
  154.     reflect 0.0
  155.     noshadow
  156.     
  157. /* objects */
  158. name molecule
  159. grid 6 6 6
  160. sphere C 0.250000
  161.     1.000000  0.000000  0.000000
  162. cylinder C
  163.     0.250000
  164.     1.000000  0.000000  0.000000
  165.     1.568650  -0.498550  -0.018550
  166. cylinder C
  167.     0.250000
  168.  
  169.     1.568650  -0.498550  -0.018550
  170.     2.137300  -0.997100  -0.037100
  171. cylinder C
  172.     0.250000
  173.     1.000000  0.000000  0.000000
  174.     1.082050  0.461300  -0.603350
  175. cylinder C
  176.     0.250000
  177.  
  178.     1.082050  0.461300  -0.603350
  179.     1.164100  0.922600  -1.206700
  180. cylinder C
  181.     0.250000
  182.     1.000000  0.000000  0.000000
  183.     1.003200  0.438950  0.625750
  184. cylinder C
  185.     0.250000
  186.  
  187.     1.003200  0.438950  0.625750
  188.     1.006400  0.877900  1.251500
  189. cylinder C
  190.     0.250000
  191.     1.000000  0.000000  0.000000
  192.     0.343600  -0.378950  0.000000
  193. cylinder C
  194.     0.250000
  195.  
  196.     0.343600  -0.378950  0.000000
  197.     -0.312800  -0.757900  0.000000
  198. sphere C 0.250000
  199.     2.137300  -0.997100  -0.037100
  200. cylinder C
  201.     0.250000
  202.     2.137300  -0.997100  -0.037100
  203.     2.664200  -0.944250  0.420750
  204. cylinder C
  205.     0.250000
  206.  
  207.     2.664200  -0.944250  0.420750
  208.     3.191100  -0.891400  0.878600
  209. cylinder C
  210.     0.250000
  211.     2.137300  -0.997100  -0.037100
  212.     2.142650  -1.504000  -0.519800
  213. cylinder C
  214.     0.250000
  215.  
  216.     2.142650  -1.504000  -0.519800
  217.     2.148000  -2.010900  -1.002500
  218. sphere C 0.250000
  219.     3.191100  -0.891400  0.878600
  220. cylinder C
  221.     0.250000
  222.     3.191100  -0.891400  0.878600
  223.     3.723350  -1.345400  0.853650
  224. cylinder C
  225.     0.250000
  226.  
  227.     3.723350  -1.345400  0.853650
  228.     4.255600  -1.799400  0.828700
  229. cylinder C
  230.     0.250000
  231.     3.191100  -0.891400  0.878600
  232.     3.186900  -0.493150  1.257900
  233. cylinder H
  234.     0.250000
  235.  
  236.     3.186900  -0.493150  1.257900
  237.     3.182700  -0.094900  1.637200
  238. sphere C 0.250000
  239.     4.255600  -1.799400  0.828700
  240. cylinder C
  241.     0.250000
  242.     4.255600  -1.799400  0.828700
  243.     4.260900  -2.306300  0.345950
  244. cylinder C
  245.     0.250000
  246.  
  247.     4.260900  -2.306300  0.345950
  248.     4.266200  -2.813200  -0.136800
  249. cylinder C
  250.     0.250000
  251.     4.255600  -1.799400  0.828700
  252.     4.813700  -1.743400  1.313650
  253. cylinder C
  254.     0.250000
  255.  
  256.     4.813700  -1.743400  1.313650
  257.     5.371800  -1.687400  1.798600
  258. sphere C 0.250000
  259.     4.266200  -2.813200  -0.136800
  260. cylinder C
  261.     0.250000
  262.     4.266200  -2.813200  -0.136800
  263.     3.739350  -2.866050  -0.594600
  264. cylinder C
  265.     0.250000
  266.  
  267.     3.739350  -2.866050  -0.594600
  268.     3.212500  -2.918900  -1.052400
  269. cylinder C
  270.     0.250000
  271.     4.266200  -2.813200  -0.136800
  272.     4.799250  -3.267900  -0.161750
  273. cylinder O
  274.     0.250000
  275.  
  276.     4.799250  -3.267900  -0.161750
  277.     5.332300  -3.722600  -0.186700
  278. sphere C 0.250000
  279.     3.212500  -2.918900  -1.052400
  280. cylinder C
  281.     0.250000
  282.     3.212500  -2.918900  -1.052400
  283.     2.680250  -2.464900  -1.027450
  284. cylinder C
  285.     0.250000
  286.  
  287.     2.680250  -2.464900  -1.027450
  288.     2.148000  -2.010900  -1.002500
  289. cylinder C
  290.     0.250000
  291.     3.212500  -2.918900  -1.052400
  292.     3.218200  -3.462000  -1.569650
  293. cylinder C
  294.     0.250000
  295.  
  296.     3.218200  -3.462000  -1.569650
  297.     3.223900  -4.005100  -2.086900
  298. sphere C 0.250000
  299.     2.148000  -2.010900  -1.002500
  300. cylinder C
  301.     0.250000
  302.     2.148000  -2.010900  -1.002500
  303.     1.734000  -2.052450  -1.362250
  304. cylinder H
  305.     0.250000
  306.  
  307.     1.734000  -2.052450  -1.362250
  308.     1.320000  -2.094000  -1.722000
  309. sphere C 0.250000
  310.     1.164100  0.922600  -1.206700
  311. cylinder C
  312.     0.250000
  313.     1.164100  0.922600  -1.206700
  314.     1.146200  0.630050  -1.681450
  315. cylinder H
  316.     0.250000
  317.  
  318.     1.146200  0.630050  -1.681450
  319.     1.128300  0.337500  -2.156200
  320. cylinder C
  321.     0.250000
  322.     1.164100  0.922600  -1.206700
  323.     0.765600  1.312700  -1.210050
  324. cylinder H
  325.     0.250000
  326.  
  327.     0.765600  1.312700  -1.210050
  328.     0.367100  1.702800  -1.213400
  329. cylinder C
  330.     0.250000
  331.     1.164100  0.922600  -1.206700
  332.     1.659300  1.179450  -1.174950
  333. cylinder H
  334.     0.250000
  335.  
  336.     1.659300  1.179450  -1.174950
  337.     2.154500  1.436300  -1.143200
  338. sphere C 0.250000
  339.     1.006400  0.877900  1.251500
  340. cylinder C
  341.     0.250000
  342.     1.006400  0.877900  1.251500
  343.     0.964400  0.564350  1.711100
  344. cylinder H
  345.     0.250000
  346.  
  347.     0.964400  0.564350  1.711100
  348.     0.922400  0.250800  2.170700
  349. cylinder C
  350.     0.250000
  351.     1.006400  0.877900  1.251500
  352.     1.472750  1.182900  1.277000
  353. cylinder H
  354.     0.250000
  355.  
  356.     1.472750  1.182900  1.277000
  357.     1.939100  1.487900  1.302500
  358. cylinder C
  359.     0.250000
  360.     1.006400  0.877900  1.251500
  361.     0.570350  1.226500  1.233200
  362. cylinder H
  363.     0.250000
  364.  
  365.     0.570350  1.226500  1.233200
  366.     0.134300  1.575100  1.214900
  367. sphere C 0.250000
  368.     5.371800  -1.687400  1.798600
  369. cylinder C
  370.     0.250000
  371.     5.371800  -1.687400  1.798600
  372.     5.294000  -1.263050  2.152750
  373. cylinder H
  374.     0.250000
  375.  
  376.     5.294000  -1.263050  2.152750
  377.     5.216200  -0.838700  2.506900
  378. cylinder C
  379.     0.250000
  380.     5.371800  -1.687400  1.798600
  381.     5.854350  -1.608700  1.526550
  382. cylinder H
  383.     0.250000
  384.  
  385.     5.854350  -1.608700  1.526550
  386.     6.336900  -1.530000  1.254500
  387. cylinder C
  388.     0.250000
  389.     5.371800  -1.687400  1.798600
  390.     5.416350  -2.161400  2.093550
  391. cylinder H
  392.     0.250000
  393.  
  394.     5.416350  -2.161400  2.093550
  395.     5.460900  -2.635400  2.388500
  396. sphere C 0.250000
  397.     3.223900  -4.005100  -2.086900
  398. cylinder C
  399.     0.250000
  400.     3.223900  -4.005100  -2.086900
  401.     2.768350  -3.982800  -2.407550
  402. cylinder H
  403.     0.250000
  404.  
  405.     2.768350  -3.982800  -2.407550
  406.     2.312800  -3.960500  -2.728200
  407. cylinder C
  408.     0.250000
  409.     3.223900  -4.005100  -2.086900
  410.     3.244300  -4.503300  -1.832450
  411. cylinder H
  412.     0.250000
  413.  
  414.     3.244300  -4.503300  -1.832450
  415.     3.264700  -5.001500  -1.578000
  416. cylinder C
  417.     0.250000
  418.     3.223900  -4.005100  -2.086900
  419.     3.677250  -3.953350  -2.409450
  420. cylinder H
  421.     0.250000
  422.  
  423.     3.677250  -3.953350  -2.409450
  424.     4.130600  -3.901600  -2.732000
  425. sphere C 0.250000
  426.     -0.312800  -0.757900  0.000000
  427. cylinder C
  428.     0.250000
  429.     -0.312800  -0.757900  0.000000
  430.     -0.787100  -0.636400  -0.500250
  431. cylinder C
  432.     0.250000
  433.  
  434.     -0.787100  -0.636400  -0.500250
  435.     -1.261400  -0.514900  -1.000500
  436. cylinder C
  437.     0.250000
  438.     -0.312800  -0.757900  0.000000
  439.     -0.444700  -1.229450  0.500250
  440. cylinder C
  441.     0.250000
  442.  
  443.     -0.444700  -1.229450  0.500250
  444.     -0.576600  -1.701000  1.000500
  445. sphere C 0.250000
  446.     -1.261400  -0.514900  -1.000500
  447. cylinder C
  448.     0.250000
  449.     -1.261400  -0.514900  -1.000500
  450.     -1.867650  -0.864900  -1.000500
  451. cylinder C
  452.     0.250000
  453.  
  454.     -1.867650  -0.864900  -1.000500
  455.     -2.473900  -1.214900  -1.000500
  456. cylinder C
  457.     0.250000
  458.     -1.261400  -0.514900  -1.000500
  459.     -1.157800  -0.144400  -1.393550
  460. cylinder H
  461.     0.250000
  462.  
  463.     -1.157800  -0.144400  -1.393550
  464.     -1.054200  0.226100  -1.786600
  465. sphere C 0.250000
  466.     -2.473900  -1.214900  -1.000500
  467. cylinder C
  468.     0.250000
  469.     -2.473900  -1.214900  -1.000500
  470.     -2.605800  -1.686400  -0.500250
  471. cylinder C
  472.     0.250000
  473.  
  474.     -2.605800  -1.686400  -0.500250
  475.     -2.737700  -2.157900  0.000000
  476. cylinder C
  477.     0.250000
  478.     -2.473900  -1.214900  -1.000500
  479.     -2.976000  -1.086200  -1.530100
  480. cylinder C
  481.     0.250000
  482.  
  483.     -2.976000  -1.086200  -1.530100
  484.     -3.478100  -0.957500  -2.059700
  485. sphere C 0.250000
  486.     -2.737700  -2.157900  0.000000
  487. cylinder C
  488.     0.250000
  489.     -2.737700  -2.157900  0.000000
  490.     -2.263350  -2.279450  0.500250
  491. cylinder C
  492.     0.250000
  493.  
  494.     -2.263350  -2.279450  0.500250
  495.     -1.789000  -2.401000  1.000500
  496. cylinder C
  497.     0.250000
  498.     -2.737700  -2.157900  0.000000
  499.     -3.214000  -2.432900  0.000000
  500. cylinder H
  501.     0.250000
  502.  
  503.     -3.214000  -2.432900  0.000000
  504.     -3.690300  -2.707900  0.000000
  505. sphere C 0.250000
  506.     -1.789000  -2.401000  1.000500
  507. cylinder C
  508.     0.250000
  509.     -1.789000  -2.401000  1.000500
  510.     -1.182800  -2.051000  1.000500
  511. cylinder C
  512.     0.250000
  513.  
  514.     -1.182800  -2.051000  1.000500
  515.     -0.576600  -1.701000  1.000500
  516. cylinder C
  517.     0.250000
  518.     -1.789000  -2.401000  1.000500
  519.     -1.928650  -2.900200  1.530100
  520. cylinder C
  521.     0.250000
  522.  
  523.     -1.928650  -2.900200  1.530100
  524.     -2.068300  -3.399400  2.059700
  525. sphere C 0.250000
  526.     -0.576600  -1.701000  1.000500
  527. cylinder C
  528.     0.250000
  529.     -0.576600  -1.701000  1.000500
  530.     -0.203950  -1.796500  1.393550
  531. cylinder H
  532.     0.250000
  533.  
  534.     -0.203950  -1.796500  1.393550
  535.     0.168700  -1.892000  1.786600
  536. sphere C 0.250000
  537.     -3.478100  -0.957500  -2.059700
  538. cylinder C
  539.     0.250000
  540.     -3.478100  -0.957500  -2.059700
  541.     -3.299800  -0.570350  -2.420650
  542. cylinder H
  543.     0.250000
  544.  
  545.     -3.299800  -0.570350  -2.420650
  546.     -3.121500  -0.183200  -2.781600
  547. cylinder C
  548.     0.250000
  549.     -3.478100  -0.957500  -2.059700
  550.     -3.957500  -0.779450  -1.833000
  551. cylinder H
  552.     0.250000
  553.  
  554.     -3.957500  -0.779450  -1.833000
  555.     -4.436900  -0.601400  -1.606300
  556. cylinder C
  557.     0.250000
  558.     -3.478100  -0.957500  -2.059700
  559.     -3.584850  -1.427250  -2.344050
  560. cylinder H
  561.     0.250000
  562.  
  563.     -3.584850  -1.427250  -2.344050
  564.     -3.691600  -1.897000  -2.628400
  565. sphere C 0.250000
  566.     -2.068300  -3.399400  2.059700
  567. cylinder C
  568.     0.250000
  569.     -2.068300  -3.399400  2.059700
  570.     -1.642800  -3.439950  2.419400
  571. cylinder H
  572.     0.250000
  573.  
  574.     -1.642800  -3.439950  2.419400
  575.     -1.217300  -3.480500  2.779100
  576. cylinder C
  577.     0.250000
  578.     -2.068300  -3.399400  2.059700
  579.     -2.154850  -3.903350  1.832850
  580. cylinder H
  581.     0.250000
  582.  
  583.     -2.154850  -3.903350  1.832850
  584.     -2.241400  -4.407300  1.606000
  585. cylinder C
  586.     0.250000
  587.     -2.068300  -3.399400  2.059700
  588.     -2.527700  -3.256050  2.344800
  589. cylinder H
  590.     0.250000
  591.  
  592.     -2.527700  -3.256050  2.344800
  593.     -2.987100  -3.112700  2.629900
  594. sphere C 0.250000
  595.     5.144800  -4.898400  0.485700
  596. cylinder C
  597.     0.250000
  598.     5.144800  -4.898400  0.485700
  599.     5.238550  -4.310500  0.149500
  600. cylinder O
  601.     0.250000
  602.  
  603.     5.238550  -4.310500  0.149500
  604.     5.332300  -3.722600  -0.186700
  605. cylinder C
  606.     0.250000
  607.     5.144800  -4.898400  0.485700
  608.     4.652500  -5.072350  0.803750
  609. cylinder O
  610.     0.250000
  611.  
  612.     4.652500  -5.072350  0.803750
  613.     4.160200  -5.246300  1.121800
  614. cylinder C
  615.     0.250000
  616.     5.144800  -4.898400  0.485700
  617.     5.723300  -5.250350  0.388250
  618. cylinder O
  619.     0.250000
  620.  
  621.     5.723300  -5.250350  0.388250
  622.     6.301800  -5.602300  0.290800
  623. sphere C 0.250000
  624.     6.364600  -6.868200  0.890100
  625. cylinder C
  626.     0.250000
  627.     6.364600  -6.868200  0.890100
  628.     6.209900  -7.440050  0.517150
  629. cylinder C
  630.     0.250000
  631.  
  632.     6.209900  -7.440050  0.517150
  633.     6.055200  -8.011900  0.144200
  634. cylinder C
  635.     0.250000
  636.     6.364600  -6.868200  0.890100
  637.     6.550750  -6.928400  1.562200
  638. cylinder C
  639.     0.250000
  640.  
  641.     6.550750  -6.928400  1.562200
  642.     6.736900  -6.988600  2.234300
  643. cylinder C
  644.     0.250000
  645.     6.364600  -6.868200  0.890100
  646.     6.333200  -6.235250  0.590450
  647. cylinder O
  648.     0.250000
  649.  
  650.     6.333200  -6.235250  0.590450
  651.     6.301800  -5.602300  0.290800
  652. sphere C 0.250000
  653.     6.055200  -8.011900  0.144200
  654. cylinder C
  655.     0.250000
  656.     6.055200  -8.011900  0.144200
  657.     6.086600  -8.643950  0.443400
  658. cylinder C
  659.     0.250000
  660.  
  661.     6.086600  -8.643950  0.443400
  662.     6.118000  -9.276000  0.742600
  663. cylinder C
  664.     0.250000
  665.     6.055200  -8.011900  0.144200
  666.     5.858100  -7.948100  -0.567600
  667. cylinder C
  668.     0.250000
  669.  
  670.     5.858100  -7.948100  -0.567600
  671.     5.661000  -7.884300  -1.279400
  672. sphere C 0.250000
  673.     6.118000  -9.276000  0.742600
  674. cylinder C
  675.     0.250000
  676.     6.118000  -9.276000  0.742600
  677.     6.304100  -9.336201  1.414750
  678. cylinder C
  679.     0.250000
  680.  
  681.     6.304100  -9.336201  1.414750
  682.     6.490200  -9.396400  2.086900
  683. cylinder C
  684.     0.250000
  685.     6.118000  -9.276000  0.742600
  686.     5.996400  -9.725300  0.449600
  687. cylinder H
  688.     0.250000
  689.  
  690.     5.996400  -9.725300  0.449600
  691.     5.874800  -10.174600  0.156600
  692. sphere C 0.250000
  693.     6.490200  -9.396400  2.086900
  694. cylinder C
  695.     0.250000
  696.     6.490200  -9.396400  2.086900
  697.     6.644900  -8.824551  2.459800
  698. cylinder C
  699.     0.250000
  700.  
  701.     6.644900  -8.824551  2.459800
  702.     6.799600  -8.252700  2.832700
  703. cylinder C
  704.     0.250000
  705.     6.490200  -9.396400  2.086900
  706.     6.514850  -9.893000  2.321950
  707. cylinder H
  708.     0.250000
  709.  
  710.     6.514850  -9.893000  2.321950
  711.     6.539500  -10.389600  2.557000
  712. sphere C 0.250000
  713.     6.799600  -8.252700  2.832700
  714. cylinder C
  715.     0.250000
  716.     6.799600  -8.252700  2.832700
  717.     6.768250  -7.620650  2.533500
  718. cylinder C
  719.     0.250000
  720.  
  721.     6.768250  -7.620650  2.533500
  722.     6.736900  -6.988600  2.234300
  723. cylinder C
  724.     0.250000
  725.     6.799600  -8.252700  2.832700
  726.     6.945850  -8.300050  3.360800
  727. cylinder H
  728.     0.250000
  729.  
  730.     6.945850  -8.300050  3.360800
  731.     7.092100  -8.347400  3.888900
  732. sphere C 0.250000
  733.     6.736900  -6.988600  2.234300
  734. cylinder C
  735.     0.250000
  736.     6.736900  -6.988600  2.234300
  737.     6.900750  -6.383000  2.629250
  738. cylinder C
  739.     0.250000
  740.  
  741.     6.900750  -6.383000  2.629250
  742.     7.064600  -5.777400  3.024200
  743. sphere C 0.250000
  744.     7.064600  -5.777400  3.024200
  745. cylinder C
  746.     0.250000
  747.     7.064600  -5.777400  3.024200
  748.     7.197850  -5.905750  3.550750
  749. cylinder H
  750.     0.250000
  751.  
  752.     7.197850  -5.905750  3.550750
  753.     7.331100  -6.034100  4.077300
  754. cylinder C
  755.     0.250000
  756.     7.064600  -5.777400  3.024200
  757.     6.624350  -5.430600  3.029000
  758. cylinder H
  759.     0.250000
  760.  
  761.     6.624350  -5.430600  3.029000
  762.     6.184100  -5.083800  3.033800
  763. cylinder C
  764.     0.250000
  765.     7.064600  -5.777400  3.024200
  766.     7.495150  -5.507100  2.790600
  767. cylinder H
  768.     0.250000
  769.  
  770.     7.495150  -5.507100  2.790600
  771.     7.925700  -5.236800  2.557000
  772. sphere C 0.250000
  773.     5.661000  -7.884300  -1.279400
  774. cylinder C
  775.     0.250000
  776.     5.661000  -7.884300  -1.279400
  777.     5.549950  -8.381950  -1.506500
  778. cylinder H
  779.     0.250000
  780.  
  781.     5.549950  -8.381950  -1.506500
  782.     5.438900  -8.879600  -1.733600
  783. cylinder C
  784.     0.250000
  785.     5.661000  -7.884300  -1.279400
  786.     6.072100  -7.641000  -1.570650
  787. cylinder H
  788.     0.250000
  789.  
  790.     6.072100  -7.641000  -1.570650
  791.     6.483200  -7.397700  -1.861900
  792. cylinder C
  793.     0.250000
  794.     5.661000  -7.884300  -1.279400
  795.     5.205500  -7.561500  -1.322900
  796. cylinder H
  797.     0.250000
  798.  
  799.     5.205500  -7.561500  -1.322900
  800.     4.750000  -7.238700  -1.366400
  801. sphere O 0.250000
  802.     5.332300  -3.722600  -0.186700
  803. sphere O 0.250000
  804.     4.160200  -5.246300  1.121800
  805. sphere O 0.250000
  806.     6.301800  -5.602300  0.290800
  807. sphere H 0.250000
  808.     3.182700  -0.094900  1.637200
  809. sphere H 0.250000
  810.     1.320000  -2.094000  -1.722000
  811. sphere H 0.250000
  812.     1.128300  0.337500  -2.156200
  813. sphere H 0.250000
  814.     0.367100  1.702800  -1.213400
  815. sphere H 0.250000
  816.     2.154500  1.436300  -1.143200
  817. sphere H 0.250000
  818.     0.922400  0.250800  2.170700
  819. sphere H 0.250000
  820.     1.939100  1.487900  1.302500
  821. sphere H 0.250000
  822.     0.134300  1.575100  1.214900
  823. sphere H 0.250000
  824.     -1.054200  0.226100  -1.786600
  825. sphere H 0.250000
  826.     -3.690300  -2.707900  0.000000
  827. sphere H 0.250000
  828.     0.168700  -1.892000  1.786600
  829. sphere H 0.250000
  830.     5.216200  -0.838700  2.506900
  831. sphere H 0.250000
  832.     6.336900  -1.530000  1.254500
  833. sphere H 0.250000
  834.     5.460900  -2.635400  2.388500
  835. sphere H 0.250000
  836.     2.312800  -3.960500  -2.728200
  837. sphere H 0.250000
  838.     3.264700  -5.001500  -1.578000
  839. sphere H 0.250000
  840.     4.130600  -3.901600  -2.732000
  841. sphere H 0.250000
  842.     -3.121500  -0.183200  -2.781600
  843. sphere H 0.250000
  844.     -4.436900  -0.601400  -1.606300
  845. sphere H 0.250000
  846.     -3.691600  -1.897000  -2.628400
  847. sphere H 0.250000
  848.     -1.217300  -3.480500  2.779100
  849. sphere H 0.250000
  850.     -2.241400  -4.407300  1.606000
  851. sphere H 0.250000
  852.     -2.987100  -3.112700  2.629900
  853. sphere H 0.250000
  854.     5.874800  -10.174600  0.156600
  855. sphere H 0.250000
  856.     6.539500  -10.389600  2.557000
  857. sphere H 0.250000
  858.     7.092100  -8.347400  3.888900
  859. sphere H 0.250000
  860.     7.331100  -6.034100  4.077300
  861. sphere H 0.250000
  862.     6.184100  -5.083800  3.033800
  863. sphere H 0.250000
  864.     7.925700  -5.236800  2.557000
  865. sphere H 0.250000
  866.     5.438900  -8.879600  -1.733600
  867. sphere H 0.250000
  868.     6.483200  -7.397700  -1.861900
  869. sphere H 0.250000
  870.     4.750000  -7.238700  -1.366400
  871. end
  872.  
  873. name spheres
  874. list
  875.     sphere (Sphere_Radius)
  876.     (Sphere_Apart) 0.0 0.0
  877.     sphere (Sphere_Radius)
  878.     (-Sphere_Apart*cos(pi/3)) (Sphere_Apart*sin(pi/3)) 0.0
  879.     sphere (Sphere_Radius)
  880.     (-Sphere_Apart*cos(pi/3)) (-Sphere_Apart*sin(pi/3)) 0.0
  881. end
  882.  
  883. name six_spheres
  884. list
  885.     object spheres
  886.     object spheres
  887.     rotate 0 0 1 60
  888. end
  889.  
  890. name the_scene
  891. list
  892.     object molecule
  893.     translate -5.3 3.7 0.0
  894.     rotate    1   0  0 175
  895.     rotate    0.  0. 1.0 155.
  896.     rotate    1   0  0 -40
  897.     rotate    0   1  0 -15
  898.     translate -2.0   0  4.0
  899.     cone
  900.     (Disc_Radius + 0.5)
  901.     0.0 0.0    0.0
  902.     (Disc_Radius)
  903.     0.0 0.0    0.5
  904.     disc Disc
  905.     (Disc_Radius)
  906.     0.0 0.0 0.5
  907.     0 0 1
  908.     object glass six_spheres
  909.     translate 0 0 (-Sphere_Radius)
  910.     scale 4 4 4    
  911. end
  912.  
  913.  
  914. /* primitives */
  915.  
  916. object the_scene
  917.     translate 0 0 2.0
  918.         
  919. plane water_blue
  920.     0 0 0
  921.     0 0 1
  922.     texture fbm 0.0 0.5 .5 1.6 9 0.0
  923.     scale 15 15 15
  924.     texture blotch 0. water_green
  925.  
  926.     texture fbmbump 0.0 0.5 0.5 1.5 7
  927.  
  928.  
  929. plane light_ambient_blue
  930.     0 0 20
  931.     0 0 -1
  932.     texture fbm 0.0 0.5 .5 1.5 10 0.0
  933.     scale 5. 5. 5.
  934.     texture blotch 1. dull_white
  935.     scale 5. 5. 5.
  936. sphere 
  937.     4.0
  938.     -120 400 6
  939.  
  940.