starting work on head.
This commit is contained in:
parent
5e8e0c284d
commit
d7570bda83
|
@ -66,6 +66,18 @@
|
||||||
#declare K_N_Y = 0.430
|
#declare K_N_Y = 0.430
|
||||||
#declare K_N_Z = 0.040
|
#declare K_N_Z = 0.040
|
||||||
|
|
||||||
|
#declare K_HU_X = 0.000
|
||||||
|
#declare K_HU_Y = 0.450
|
||||||
|
#declare K_HU_Z = 0.050
|
||||||
|
#declare K_HO_X = 0.000
|
||||||
|
#declare K_HO_Y = 0.550
|
||||||
|
#declare K_HO_Z = 0.050
|
||||||
|
#declare R_H_X = 0.050
|
||||||
|
#declare R_H_Y = 0.050
|
||||||
|
#declare R_H_Z = 0.060
|
||||||
|
#declare A_H_X = 0
|
||||||
|
#declare A_H_Z = 0
|
||||||
|
|
||||||
|
|
||||||
#declare mensch =
|
#declare mensch =
|
||||||
blob {
|
blob {
|
||||||
|
@ -123,6 +135,7 @@
|
||||||
translate <-K_RU_X, 0, K_RU_Z>
|
translate <-K_RU_X, 0, K_RU_Z>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if (1)
|
||||||
// nacken
|
// nacken
|
||||||
sphere {
|
sphere {
|
||||||
<0, 0, 0>
|
<0, 0, 0>
|
||||||
|
@ -131,7 +144,20 @@
|
||||||
scale <R_N_X, R_N_Y, R_N_Z>
|
scale <R_N_X, R_N_Y, R_N_Z>
|
||||||
translate <0, K_N_Y, K_N_Z>
|
translate <0, K_N_Y, K_N_Z>
|
||||||
}
|
}
|
||||||
|
#end
|
||||||
|
|
||||||
|
// hals
|
||||||
|
cylinder {
|
||||||
|
<-0, K_HU_Y, 0>
|
||||||
|
<-0, K_HO_Y, 0>
|
||||||
|
R_H_Y/BR
|
||||||
|
BS
|
||||||
|
scale <R_H_X/R_H_Y, R_H_Y/R_H_Y, R_H_Z/R_H_Y>
|
||||||
|
rotate <-A_H_X, 0>
|
||||||
|
rotate <0, 0, A_H_Z>
|
||||||
|
translate <-K_HU_X, 0, K_HU_Z>
|
||||||
|
texture { pigment { color Red } }
|
||||||
|
}
|
||||||
|
|
||||||
texture { pigment { color White } }
|
texture { pigment { color White } }
|
||||||
translate <0, H_BECKEN, 0>
|
translate <0, H_BECKEN, 0>
|
||||||
|
|
|
@ -0,0 +1,35 @@
|
||||||
|
#include "colors.inc"
|
||||||
|
#include "shapes.inc"
|
||||||
|
#include "textures.inc"
|
||||||
|
#include "metals.inc"
|
||||||
|
#include "stones.inc"
|
||||||
|
|
||||||
|
global_settings {
|
||||||
|
assumed_gamma 1.0
|
||||||
|
ambient_light rgb<0.5, 0.5, 0.5>
|
||||||
|
}
|
||||||
|
light_source {
|
||||||
|
<-200, 200, -200>
|
||||||
|
color White
|
||||||
|
}
|
||||||
|
light_source {
|
||||||
|
<200, 200, -200>
|
||||||
|
color Red
|
||||||
|
}
|
||||||
|
light_source {
|
||||||
|
<200, 200, 200>
|
||||||
|
color Green
|
||||||
|
}
|
||||||
|
light_source {
|
||||||
|
<-200, 200, 200>
|
||||||
|
color Blue
|
||||||
|
}
|
||||||
|
camera {
|
||||||
|
location <-0.5, 0, 0.0>
|
||||||
|
look_at <-0, 0, 0>
|
||||||
|
rotate <0, 30*clock, 0>
|
||||||
|
}
|
||||||
|
|
||||||
|
#include "kopf.pov"
|
||||||
|
|
||||||
|
object { kopf }
|
|
@ -9,7 +9,7 @@ global_settings {
|
||||||
ambient_light rgb<0.5, 0.5, 0.5>
|
ambient_light rgb<0.5, 0.5, 0.5>
|
||||||
}
|
}
|
||||||
light_source {
|
light_source {
|
||||||
<-00, 200, 200>
|
<-200, 200, -200>
|
||||||
color White
|
color White
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue