Some formula writing would be easier if the Formula class in common.ulb had in its protected area
complex m_c
and functions like
func SetC(complex c)
m_c = c
endfunc
complex func GetC( )
return m_c
endfunc
Including these changes would not break any current fractals and would allow simpler switching from Mandelbrot-type to Julia-type.
Some formula writing would be easier if the Formula class in common.ulb had in its protected area
````
complex m_c
````
and functions like
````
func SetC(complex c)
m_c = c
endfunc
complex func GetC( )
return m_c
endfunc
````
Including these changes would not break any current fractals and would allow simpler switching from Mandelbrot-type to Julia-type.
edited Jun 10 at 3:45 pm