The OrthoSliceQuality option changes the quality of the Ortho image. The OptionValue is set to a number between 0 and 1. The larger the value, the better the quality and the longer it takes to render the image.
Syntax
object.Construct(“CreateModule”)
object.Option(“SourceModule”, “data file name”)
object.Option(“Type”, “OrthoImage”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “OrthoImage”)
object.Option(“OrthoSliceQuality”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example turns on the Ortho image lighting.
CommandApi.Construct("ModifyModule")
CommandApi.Option("Module","OrthoImage")
CommandApi.Option("OrthoSliceQuality", "0.7")
CommandApi.Do()
Used by: OrthoSlice module
See Also