/* -------------------------- Entry: 0010 WWW: http:// Title: julia_reflect_var_02 Author: Pete Capasso a povray julia_fractal object (quaternion sqr) that has a mirror finish ---------------------------*/ #version 3.5; // julia_reflect_var_02.pov by pete capasso // povray@bestweb.net global_settings { assumed_gamma 2.2 // change to match your display_gamma setting noise_generator 1 max_trace_level 8 } camera { location 0 //direction <0, 0, 1> direction <0, 0, 0.9> right <(image_width / image_height), 0, 0> up <0, 1, 0> translate <0, 0, -4> } sky_sphere { pigment { gradient <0, 1, 0> color_map { [ 0.0 color rgb 1 ] [ 1.0 color rgb 0 ] } warp { repeat <0, 1, 0> flip <0, 1, 0> } } } julia_fractal { < 0.588, 0.539, 0.386, 0.152 > quaternion sqr // sqr or cube max_iteration 9 precision 400 scale 2 rotate y*60 translate <-0.8, 1.4, 0> scale 5 pigment { color rgb 0 } finish { ambient 0 diffuse 0 reflection 1 } } /* actual end of this file */