The LatticeMathOutType option change the output type for the interpolated lattice created by the Math module. The OptionValue is 0, 1, 2, 3, 4, 5, 6, 7, or 8 for Signed 8 bits, Unsigned 8 bits, signed 16 bits, Unsigned 16 bits, Signed 32 bits,'Unsigned 32 bits, Signed 64 bits, Float (32 bits), or Double (64 bits).
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Math”)
object.Option(“LatticeMathOutType”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the output type for the interpolated lattice created by the Math module.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Math")
CommandApi.Option ("LatticeMathOutType", "7")
CommandApi.Do()
Used by: LatticeMath
See Also