The VolRenderInterpolation option changes the interpolation method for VolRender. The OptionValue is 0 or 1 for Nearest Neighbor or Trilinear.
Syntax
object.Construct(“CreateModule”)
object.Option(“SourceModule”, “data file name”)
object.Option(“Type”, “VolRender”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “VolRender”)
object.Option(“VolRenderInterpolation”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the volrender interpolation to Trilinear.
CommandApi.Construct("ModifyModule")
CommandApi.Option ("Module", "VolRender")
CommandApi.Option ("VolRenderInterpolation", "1")
CommandApi.Do()
Used by: VolRender module
See Also