The IsosurfaceIsovalue option changes the value being shown by the isosurface. The OptionValue is a number between the component minimum value and the component maximum value.
Syntax
object.Construct(“CreateModule”)
object.Option(“SourceModule”, “data file name”)
object.Option(“Type”, “Isosurface”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “Isosurface”)
object.Option(“IsosurfaceIsovalue”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the isosurface value to 3.9.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Isosurface")
CommandApi.Option ("IsosurfaceIsovalue", "3.9")
CommandApi.Do()
Used by: Isosurface
See Also