Section: Visualization Toolkit Common Classes
This is just an interface.
To create an instance of class vtkGaussianRandomSequence, simply invoke its constructor as follows
obj = vtkGaussianRandomSequence
obj
is an instance of the vtkGaussianRandomSequence class.
string = obj.GetClassName ()
int = obj.IsA (string name)
vtkGaussianRandomSequence = obj.NewInstance ()
vtkGaussianRandomSequence = obj.SafeDownCast (vtkObject o)
double = obj.GetScaledValue (double mean, double standardDeviation)
- Convenient method to return a value given the mean and standard deviation
of the Gaussian distribution from the the Gaussian distribution of mean=0
and standard deviation=1.0. There is an initial implementation that can
be overridden by a subclass.