Tre luci spot diverse, Red Green Blue, si combinano su una superficie (una griglia…)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
#VRML V2.0 utf8 NavigationInfo{headlight FALSE} Viewpoint { position 0 10 10 orientation -1 0 0 .8 } # Una griglia piatta (10x10, 100x100 punti) Inline{url "https://www.valcon.it/vrml-/shapegrid.wrl"} #LUCE SPOT ROSSA DA DESTRA SpotLight { color 1 0 0 location 5 5 0 direction -1 -1 0 cutOffAngle 0.3 } #LUCE SPOT VERDE DAL FONDO SpotLight { color 0 1 0 location 0 5 -5 direction 0 -1 1 cutOffAngle 0.3 } #LUCE SPOT BLU DA SINISTRA SpotLight { color 0 0 1 location -5 5 0 direction 1 -1 0 cutOffAngle 0.3 } |