The ContourPlaneXNormal option changes the X normal direction for the cutting plane. The OptionValue is set to any number. The ratio of the numbers for the ContourPlaneXNormal, ContourPlaneYNormal and ContourPlaneZNormal determine the angle of the cutting plane.
Syntax
object.Construct(“CreateModule”)
object.Option(“SourceModule”, “data file name”)
object.Option(“Type”, “Contours”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “Contours”)
object.Option(“ContourPlaneXNormal”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to set the X Normal value for a contour cutting plane.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Contours")
CommandApi.Option ("ContourPlaneXNormal", "30")
CommandApi.Do()
Used by: Contour
See Also