The FaceRenderColormap option changes the colormap for the FaceRender module. The OptionValue is the name of the color map.
Syntax
object.Construct(“CreateModule”)
object.Option(“SourceModule”, “data file name”)
object.Option(“Type”, “FaceRender”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “FaceRender”)
object.Option(“FaceRenderColormap”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the color map being used to the "Rainbow" map.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "FaceRender")
CommandApi.Option ("FaceRenderColormap", "Rainbow")
CommandApi.Do()
Used by: FaceRender
See Also