Property VLUniformNoise.TVLUniformNoise.Seed
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TVLUniformNoise
Contents |
Syntax
Delphi:
property Seed : Word read FSeed write SetSeed default 31192;
C++ Builder:
__property WORD Seed = { read=FSeed, write=SetSeed, default=31192 };
Summary
Initial seed value for the pseudo-random number generation.
Description
Use this property to specify the initial seed value used by
the pseudo-random number generation algorithm.
Delphi example:
VLUniformNoise1.Seed := 2000;
C++ Builder example:
VLUniformNoise1->Seed = 2000;
Visual C++(MFC) example:
VLUniformNoise1.Seed = 2000;
C# example:
uniformNoise1.Seed = 2000;