dmj5
Class DMJ_GeneratorRandom2

Object
  extended by common:Generic
      extended by common:Generator
          extended by dmj5:DMJ_GeneratorRandom
              extended by dmj5:DMJ_GeneratorRandom2

class 
DMJ_GeneratorRandom:DMJ_GeneratorRandom2

This is identical to Random except it has a different default sequence.


Ultra Fractal Source

Toggle UF Source Code Display

 class DMJ_GeneratorRandom2(DMJ_GeneratorRandom) {
   ; This is identical to Random except it has a different default sequence.
   
 public:
   import "common.ulb"
 
   ; Constructor
   ; @param pparent = a reference to the object creating the new object; typically, 'this'
   func DMJ_GeneratorRandom2(Generic pparent)
     DMJ_GeneratorRandom.DMJ_GeneratorRandom(pparent)
   endfunc
   
 default:
   title = "Random (Alternate Seed 1)"
   
   int param v_dmj_generatorrandom2
     caption = "Version (DMJ_GeneratorRandom2)"
     default = 100
     hint = "This version parameter is used to detect when a change has been made to the formula that is incompatible with the previous version. When that happens, this field will reflect the old version number to alert you to the fact that an alternate rendering is being used."
     visible = @v_dmj_generatorrandom2 < 100
   endparam
 
   int param p_seed
     caption = "Seed"
     default = 8072177
     hint = "Sets the seed for the random number generator. Each different seed produces a different sequence of random values."
   endparam
 }
 


Constructor Summary
DMJ_GeneratorRandom2()
           
DMJ_GeneratorRandom2(Generic pparent)
          Constructor
 
Method Summary
 
Methods inherited from class dmj5:DMJ_GeneratorRandom
Init, InitDefault, Iterate
 
Methods inherited from class common:Generator
IsBailedOut
 
Methods inherited from class common:Generic
GetParent
 
Methods inherited from class Object
 

Constructor Detail

DMJ_GeneratorRandom2

public DMJ_GeneratorRandom2(Generic pparent)
Constructor

Parameters:
pparent - = a reference to the object creating the new object; typically, 'this'

DMJ_GeneratorRandom2

public DMJ_GeneratorRandom2()