home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 26
/
CD_ASCQ_26_1295.iso
/
voxrom
/
textes
/
repwin08
/
annexes
/
cybermad
/
essai1.pov
< prev
Wrap
Text File
|
1995-10-01
|
574b
|
31 lines
/* Fichier : Scène pour POV 2
Nom : ESSAI1.POV (une simple sphère rouge)
Auteur : J-Paul "CyberMad" MARUEJOULS
Pour Le Reporter n° 8
Droits : Versé dans le Domaine Public ;-)
*/
#include "colors.inc"
// La Caméra
camera {
location <0,0,-5>
look_at <0,0,1>
}
// La Source lumineuse
light_source {
<10,10,-10>
color White
}
// L'objet
sphere {
<0,0,0>,1
pigment { Red }
}