2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/povray/ellipsoid/glass.inc

24 lines
391 B
PHP
Raw Normal View History

2012-08-31 21:26:24 +02:00
#declare M_Glass= // Glass material
material {
texture {
pigment {rgbt 1}
finish {
ambient 0.0
diffuse 0.05
specular 0.6
roughness 0.005
reflection {
0.1, 1.0
fresnel on
}
conserve_energy
}
}
interior {
ior 1.5 // Glass refraction
2012-09-07 22:21:55 +02:00
fade_power 1000
2012-08-31 21:26:24 +02:00
fade_distance 0.9
2012-09-07 22:21:55 +02:00
fade_color <0.1,0.1,0.9>
2012-08-31 21:26:24 +02:00
}
}