ContourPlaneZNormal Option

 

The ContourPlaneZNormal option changes the Z 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(“ContourPlaneZNormal”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example shows how to set the Z Normal value for a contour cutting plane.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("ContourPlaneZNormal", "60")

  CommandApi.Do()

 

Used by: Contour

 

 

See Also

Automation Model