The StreamLinesZNormal option changes the Z component of the normal for streamlines. 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(“StreamLinesZNormal”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the Z component of the seed normal.
CommandApi.Construct("ModifZModule")
CommandApi.Option ("Module", "StreamLines")
CommandApi.Option ("StreamLinesZNormal", "45")
CommandApi.Do()
Used by: StreamLines
See Also