src/Algorithm/fractals.c [230:243]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - w *= fractalRotation2; w *= scale; w -= scale_offset; // Record minimum orbit for colouring d = dot(w, w); if (i < colorIterations) { md = min(md, d); cd = d; } } return vec3((length(w) - 2.0) * pow(scale, -float(maxIterations)), md, cd); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/Algorithm/fractals.c [300:313]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - w *= fractalRotation2; w *= scale; w -= scale_offset; // Record minimum orbit for colouring d = dot(w, w); if (i < colorIterations) { md = min(md, d); cd = d; } } return vec3((length(w) - 2.0) * pow(scale, -float(maxIterations)), md, cd); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -