dmj5
Class DMJ_GeneratorRandom3
Object
common:Generic
common:Generator
dmj5:DMJ_GeneratorRandom
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
}
Methods inherited from class Object |
|
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()