AFAICT, there is an interesting repetition going down the real axis for infinity. From:
_______________________________
// hyperbolic tan forest
z = (std::sin(z) * std::tanh(z));
if (z.real() * z.real() +
z.imag() * z.imag() > 23456.0)
{
// bail
return;
}
_______________________________
The higher the escape, the more repetitions occur.
_______________________________
// hyperbolic tan forest
z = (std::sin(z) * std::tanh(z));
if (z.real() * z.real() +
z.imag() * z.imag() > 23456.0)
{
// bail
return;
}
_______________________________
The higher the escape, the more repetitions occur.
