dmj5
Class DMJ_GeneratorRandom3

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

class 
DMJ_GeneratorRandom:DMJ_GeneratorRandom3

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


Ultra Fractal Source

Toggle UF Source Code Display

 class DMJ_GeneratorRandom3(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_GeneratorRandom3(Generic pparent)
     DMJ_GeneratorRandom.DMJ_GeneratorRandom(pparent)
   endfunc
   
 default:
   title = "Random (Alternate Seed 2)"
   
   int param v_dmj_generatorrandom3
     caption = "Version (DMJ_GeneratorRandom3)"
     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_generatorrandom3 < 100
   endparam
 
   int param p_seed
     caption = "Seed"
     default = 654187327
     hint = "Sets the seed for the random number generator. Each different seed produces a different sequence of random values."
   endparam
 }
 


Constructor Summary
DMJ_GeneratorRandom3()
           
DMJ_GeneratorRandom3(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_GeneratorRandom3

public DMJ_GeneratorRandom3(Generic pparent)
Constructor

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

DMJ_GeneratorRandom3

public DMJ_GeneratorRandom3()