home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / dos / fr / luxart20 / scenes / diaphrag.art < prev    next >
Text File  |  1994-09-28  |  1KB  |  87 lines

  1. // Un script pour tester le résultat d'un rendu lorsque l'on utilise
  2. // l'ouverture du diaphragme et la profondeur de champ.
  3.  
  4. #inclure couleurs.inc
  5.  
  6. environnement
  7. {
  8.  position_camera 8 0 3
  9.  pointe_vers 0 0 0
  10.  orientation_z 0 0 1
  11.  champ_visuel 45
  12.  resolution 640 480
  13.  anti_crenelage recursif
  14.  seuil 2
  15.  facteur_proportionnel 1.3333
  16.  
  17.  ouverture_diaphragme .2
  18.  profondeur_champ 8.5
  19.  quantite 4
  20. }
  21.  
  22. source_lumineuse
  23. {
  24.  type point
  25.  puissance 0
  26.  position -2 1 4
  27.  intensite .7 .7 .7
  28. }
  29.  
  30. source_lumineuse
  31. {
  32.  type point
  33.  puissance 0
  34.  position 10 1 8
  35.  intensite .4 .4 .4
  36. }
  37.  
  38. // le parquet
  39.  
  40. matiere
  41. {
  42.  diffuse
  43.  {
  44.   plaquer_image parquet1.lux
  45.   centre 0 0 0
  46.   cadre 1 0 0
  47.   normale 0 0 1
  48.   ajuster 3
  49.  }
  50. }
  51.  
  52. disque
  53. {
  54.  centre 0 0 0
  55.  normale 0 0 1
  56.  rayon 1000
  57. }
  58.  
  59. // Disposition des trois boules alignées dans le champ de vision
  60.  
  61. matiere
  62. {
  63.  diffuse Rouge
  64.  reflexion .2 .2 .2
  65.  speculaire 30
  66. }
  67.  
  68. sphere { centre 0 0 0.5 rayon 1.0 }
  69.  
  70. matiere
  71. {
  72.  diffuse Vert
  73.  reflexion .2 .2 .2
  74.  speculaire 30
  75. }
  76.  
  77. sphere { centre -3 1 1.5 rayon 1.0 }
  78.  
  79. matiere
  80. {
  81.  diffuse Bleu
  82.  reflexion .2 .2 .2
  83.  speculaire 30
  84. }
  85.  
  86. sphere { centre 3 -1 1.0 rayon 1.0 }
  87.