The StreamLinesMinVelocity option changes the minimum velocity for which points are not traced from the seed point for stream lines. The OptionValue is a number.
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(“StreamLinesMinVelocity”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example sets the minimum velocity for stream lines.
CommandApi.Construct("ModifyModule")
CommandApi.Option ("Module", "StreamLines")
CommandApi.Option ("StreamLinesMinVelocity", "0.2")
CommandApi.Do()
Used by: StreamLines
See Also