IsosurfaceFacestyle Option

 

The IsosurfaceFacestyle option changes the "Side to Draw" style for the surface being shown by the isosurface. The OptionValue is 0, 1, or 2 for front and back, front only or back only.

 

 

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(“IsosurfaceFacestyle”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example changes the isosurface face style to back only

 

  CommandApi.Construct ("ModifyModule")

  CommandApi.Option ("Module", "Isosurface")

  CommandApi.Option ("IsosurfaceFacestyle", "2")

  CommandApi.Do()

 

Used by: Isosurface

 

 

See Also

Automation Model