Image:Bump-map-demo-bumpy.png
|
|

Missing image Heckert_GNU_white.png | Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. Subject to disclaimers. |
Orange sphere with a bump map, rendered in POV-Ray (http://www.povray.org/).
#version 3.5;
#include "colors.inc"
camera {
location <0, 0, -2.4>
right x * image_width / image_height
look_at <0, 0, 0>
}
sky_sphere {
pigment {
color White
}
}
light_source {
<-20, 20, -20>
color White
}
sphere {
<0, 0, 0>, 1
texture {
finish {
ambient 0.3
specular 0.2
}
pigment {
color Orange
}
normal {
bump_map {
png "Orange-bumpmap.png"
interpolate 2
bump_size 2.0
once
}
scale 2
translate <-1, -1, 0>
rotate <20, -15, 0>
}
}
}
File links
There are no pages that link to this file.
