Advertisement
Guest User

povray settings

a guest
Sep 10th, 2010
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. #include "render.inc"
  2.  
  3. background {color rgb 1}
  4.  
  5. light_source {
  6. <300,200,100>
  7. rgb 1
  8. shadowless
  9. }
  10.  
  11. global_settings {
  12. assumed_gamma 2
  13. }
  14.  
  15. camera {
  16. orthographic
  17. location <0,150,150>
  18. rotate <-20,10,-40>
  19. look_at <0,0,0>
  20. }
  21.  
  22. sky_sphere
  23. {
  24. pigment
  25. {
  26. gradient y
  27. color_map
  28. {
  29. [0.0 rgb <1.0,1.0,1.0>] //153, 178.5, 255 //150, 240, 192
  30. [0.7 rgb <0.9,0.9,0.9>] // 0, 25.5, 204 //155, 240, 96
  31. }
  32. scale 2
  33. translate 1
  34. }
  35. }
  36.  
  37. object {
  38. MODELNAME
  39. texture {
  40. pigment {color <0,.9,0>}
  41. finish {phong 0.0}
  42. }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement