#version 3.0 global_settings { assumed_gamma 1 ambient_light rgb<1,1,1> } camera { location <0, 0,-36.5> look_at <0, 0, 0> angle 12.0 } background {color rgb <1,1,1>} // ******* L I G H T S ******* light_source { // Area_Lichtpunkt 1 <-60,100,-75> color rgb<1,1,1> area_light <-20,0,0>, <0,-20,0>, 3, 3 adaptive 1 jitter } light_source { // Area_Lichtpunkt 2 <60,100,-10> color rgb<1,1,1> area_light <0,-20,0>, <0,0,-20>, 3, 3 adaptive 1 jitter } // ******** TEXTURES ******* #declare Kugel = texture { finish { diffuse 0.8 ambient 0.2 phong 0.6 phong_size 100 }} #declare Edges = texture { //Gold pigment { color rgb<0.850, 0.850, 0.100> } finish { diffuse 0.7 ambient 0.2 phong 0.75 phong_size 80 reflection 0.25 roughness 0.05 brilliance 6 metallic }} #declare Bond = texture { //Chrom pigment { color rgb<0.659, 0.659, 0.659> } finish { diffuse 0.7 ambient 0.3 reflection 0.5 specular 0.8 roughness 0.1 brilliance 8.0 metallic }} union { //C sphere { <2.16,0.78,1.40>, 0.38 } sphere { <-2.63,0.10,0.35>, 0.38 } texture {Kugel pigment {color rgb <0.00,0.00,0.00>} }} union { //H sphere { <-0.62,-1.85,-1.73>, 0.16 } sphere { <-1.67,-0.74,-2.24>, 0.16 } sphere { <-3.20,-0.14,1.27>, 0.16 } sphere { <-2.75,1.17,0.08>, 0.16 } sphere { <-2.95,-0.56,-0.49>, 0.16 } sphere { <3.20,0.56,1.72>, 0.16 } sphere { <2.08,1.85,1.10>, 0.16 } sphere { <1.45,0.58,2.24>, 0.16 } texture {Kugel pigment {color rgb <0.50,0.50,0.50>} }} union { //N sphere { <-0.68,-0.87,-2.00>, 0.38 } texture {Kugel pigment {color rgb <0.00,0.00,1.00>} }} union { //O sphere { <-0.36,1.59,-1.02>, 0.37 } sphere { <-1.27,-0.14,0.60>, 0.37 } texture {Kugel pigment {color rgb <1.00,0.00,0.00>} }} union { //P sphere { <-0.26,0.15,-0.63>, 0.55 } texture {Kugel pigment {color rgb <1.00,0.00,1.00>} }} union { //S sphere { <1.72,-0.27,-0.02>, 0.51 } texture {Kugel pigment {color rgb <1.00,1.00,0.00>} }} union { // cylinder { <2.16,0.78,1.40>,<3.20,0.56,1.72>,0.05} cylinder { <2.16,0.78,1.40>,<2.08,1.85,1.10>,0.05} cylinder { <2.16,0.78,1.40>,<1.45,0.58,2.24>,0.05} cylinder { <2.16,0.78,1.40>,<1.72,-0.27,-0.02>,0.05} cylinder { <-2.63,0.10,0.35>,<-3.20,-0.14,1.27>,0.05} cylinder { <-2.63,0.10,0.35>,<-2.75,1.17,0.08>,0.05} cylinder { <-2.63,0.10,0.35>,<-2.95,-0.56,-0.49>,0.05} cylinder { <-2.63,0.10,0.35>,<-1.27,-0.14,0.60>,0.05} cylinder { <-0.62,-1.85,-1.73>,<-0.68,-0.87,-2.00>,0.05} cylinder { <-1.67,-0.74,-2.24>,<-0.68,-0.87,-2.00>,0.05} cylinder { <-0.68,-0.87,-2.00>,<-0.26,0.15,-0.63>,0.05} cylinder { <-0.36,1.59,-1.02>,<-0.26,0.15,-0.63>,0.05} cylinder { <-1.27,-0.14,0.60>,<-0.26,0.15,-0.63>,0.05} cylinder { <-0.26,0.15,-0.63>,<1.72,-0.27,-0.02>,0.05} texture { Bond pigment {color rgb <0.00,0.00,0.00>} }} // End of File