The StreamLinesNumSeeds option changes the number of seeds for streamlines. The OptionValue is a number between 1 and 100.
Syntax
object.Construct(“CreateModule”)
object.Option(“SourceModule”, “data file name”)
object.Option(“Type”, “StreamLines”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “StreamLines”)
object.Option(“StreamLinesNumSeeds”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the number of seeds.
CommandApi.Construct("ModifyModule")
CommandApi.Option ("Module", "StreamLines")
CommandApi.Option ("StreamLinesNumSeeds", "54")
CommandApi.Do()
Used by: StreamLines
See Also