The LatticeResampleXMax option changes the X axis maximum value for a Resample module. The OptionValue is a number, representing the maximum X value.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Resample”)
object.Option(“LatticeResampleXMax”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example sets the X Axis maximum value for the Resample module.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Resample")
CommandApi.Option ("LatticeResampleXMax", "0.6")
Used by: LatticeResample
See Also