POV Ray 3.7 code //=================================================== // Julia 3D set ($c=-0.745429$) as a whole // (POV-Ray "Julia_fractal" function [hypercomplex]) //=================================================== #include "colors.inc" // Standard Color definitions #include "metals.inc" // Metal pigment effect global_settings {assumed_gamma 1.0} // set display gamma background { color rgb <00,0.0,0.0> } // set black background camera { // set view point (camera) location perspective location < 1.0, 1.0, -3> right x * 1 up y * 3/4 angle 50 look_at < -0.2, 0.0, 0.0> } light_source { // set point light sources location < 0.0, 10, -10> rgb <1.000000, 0.500000, 0.000000> * 2.0 } julia_fractal { // apply julia_fractal fucntion <-0.745429,0.0,0.0,0.0> hypercomplex sqr max_iteration 10 precision 80 radiosity { importance 1.0 } pigment {BrightGold scale 1} finish { ambient .1 diffuse .5 reflection 1 specular .5 metallic 2 } rotate y*137 rotate z*20 }