The LatticeSliceInterpolate option turns on or off the trilinear interpolation for the Slice module. The OptionValue is set to True or False. True turns on the interpolation. False does not.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Slice”)
object.Option(“LatticeSliceInterpolate”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example turns on the trilinear interpolation for the Slice module.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Slice")
CommandApi.Option ("LatticeSliceInterpolate", "True")
CommandApi.Do()
Used by: LatticeSlice
See Also