The StreamLinesStepSize option changes the step size for streamlines. The OptionValue is any number, indicating the distance between steps. Use this option with StreamLinesAutoStep set to False.
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(“StreamLinesStepSize”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the stream line step interval.
CommandApi.Construct("ModifyModule")
CommandApi.Option ("Module", "StreamLines")
CommandApi.Option ("StreamLinesStepSize", "0.3")
CommandApi.Do()
Used by: StreamLines
See Also