first bloubspace run done

This commit is contained in:
tth
2022-02-06 23:45:08 +01:00
parent 91f7a07990
commit c0c031f21a
12 changed files with 432 additions and 0 deletions

40
BloubWorld/scene.pov Normal file
View File

@@ -0,0 +1,40 @@
/*
* BLOUBSWORLD
* new Sun 06 Feb 2022 01:33:39 PM CET, rue Ernest Renan
*/
#version 3.7;
global_settings {
ambient_light rgb <0.02, 0.02, 0.09>
assumed_gamma 1.0
}
#include "colors.inc"
#include "bloubs.inc"
object {
Bloubs
texture {
pigment { color Gray50 }
finish { phong 0.58 metallic 0.45 }
}
}
plane {
<0, 1, 0>, 0
texture {
pigment { color Gray10 }
finish { phong 0.58 metallic 0.45 }
}
}
light_source { <4, 1, -9> color White }
light_source { <4, 9, 9> color White }
camera {
location <1, 3, -5>
look_at <0, 0, 0>
right x*image_width/image_height
angle 48
}