The LatticeResampleYNum option changes the number of nodes in the Y direction for a Resample module. The OptionValue is a number.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Resample”)
object.Option(“LatticeResampleYNum”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example sets the number of nodes in the Y direction for the Resample module.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Resample")
CommandApi.Option ("LatticeResampleYNum", "30")
Used by: LatticeResample
See Also