The LatticeMathYMax option sets the Y maximum value for the output lattice for a Math module. The OptionValue is any number, representing the maximum value.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Math”)
object.Option(“LatticeMathYMax”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the Y axis maximum value.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Math")
CommandApi.Option ("LatticeMathYMax", 0.6")
CommandApi.Do()
Used by: LatticeMath
See Also