types.add("Fan-In");
this.setCollectCurrentTabOnly(true);
this.beginTab("Randomize");
addProperty(this.high = new DoubleField("high","High Range",true,0,-1));
addProperty(this.low = new DoubleField("low","Low Range",true,0,-1));
addProperty(this.type = new ComboBoxField("type","Type",true,types));
this.beginTab("Perturb");
addProperty(this.perturbPercent = new DoubleField("perturb percent","Perturb Percent",true,0,-1));
this.beginTab("Gaussian");
addProperty(this.mean = new DoubleField("mean","Mean",true,0,-1));
addProperty(this.deviation = new DoubleField("standard deviation","Standard Deviation",true,0,-1));
this.beginTab("Consistent");
addProperty(this.seedValue = new IntegerField("seed value","Seed Value",true,0,-1));
addProperty(this.constHigh = new DoubleField("high","High Range",true,0,-1));
addProperty(this.constLow = new DoubleField("low","Low Range",true,0,-1));
this.beginTab("Constant");
addProperty(this.constantValue = new DoubleField("constant value","Constant Value",true,0,-1));
render();
}