mt
Class MT_DruidJulia

Object
  extended by common:Generic
      extended by common:Formula
          extended by common:DivergentFormula
              extended by mt:MT_DruidJulia

class 
DivergentFormula:MT_DruidJulia

Mark Townsend, April 2008


Ultra Fractal Source

Toggle UF Source Code Display

 class MT_DruidJulia(common.ulb:DivergentFormula) {
 ;
 ; Mark Townsend, April 2008
 ;
 public:
   complex func Init(complex pz)
     fIter = 0
     return pz
   endfunc
 
   complex func Iterate(complex pz)
     if fIter % 2 == 0
       complex newz = pz^@p_power + @seed
     else
       newz = pz^@p_power
       newz = newz - real(newz) + abs(real(newz)) + @seed
     endif
     fIter = fIter + 1
     return newz
   endfunc
 
 private:
   int fIter
 
 default:
   title = "Druid Julia"
   param seed
     caption = "Julia seed"
     default = (-0.77, 0.14)
   endparam
   param p_power
     caption = "Power"
     default = (2,0)
   endparam
   float param p_bailout
     caption = "Bailout value"
     default = 128.0
     min = 1.0
     exponential = true
   endparam
 }
 


Constructor Summary
MT_DruidJulia()
           
 
Method Summary
 complex Init(complex pz)
          Set up for a sequence of values
 complex Iterate(complex pz)
          Produce the next value in the sequence
 
Methods inherited from class common:DivergentFormula
GetUpperBailout, IsBailedOut
 
Methods inherited from class common:Formula
GetLowerBailout, GetPrimaryExponent
 
Methods inherited from class common:Generic
GetParent
 
Methods inherited from class Object
 

Constructor Detail

MT_DruidJulia

public MT_DruidJulia()
Method Detail

Init

public complex Init(complex pz)
Description copied from class: DivergentFormula
Set up for a sequence of values

This function will be called at the beginning of each sequence of values (e.g. at the beginning of each fractal orbit).

Overrides:
Init in class DivergentFormula
Parameters:
pz - seed value for the sequence; for a normal fractal formula, this will be #pixel
Returns:
first value in the sequence; this corresponds to #z in a fractal formula

Iterate

public complex Iterate(complex pz)
Description copied from class: Formula
Produce the next value in the sequence

As long as the sequence has not bailed out, this function will be continually called to produce sequence values.

Overrides:
Iterate in class Formula
Parameters:
pz - previous value in the sequence; corresponds to #z in a fractal formula. Note that you should always use this value for computing the next iteration, rather than a saved value, as the calling code may modify the returned value before passing it back to the next Iterate() call.
Returns:
the next value in the sequence