The julia seed parameters are available by the member valiables _jx,_jy and _jz. The member _isJulia corresponds to the formula Julia parameter. The following code is used to define the mandelbrot and julia formula in the same source code.
public override bool GetBool(double x, double y, double z)
{
double br, bi, bj;
double ar, ai, aj;
if (_isJulia)
{
br = _jx; bi = _jy; bj = _jz;
ar = x; ai = y; aj = z;
}
else
{
br = x; bi = y; bj = z;
ar = _jx; ai = _jy; aj = _jz;
}
...