*setcuttingplaneactive

Turns the specified cutting plane on/off.

Syntax

*setcuttingplaneactive axis state

Type

HyperMesh Tcl Modify Command

Description

Turns the specified cutting plane on/off.

Inputs

axis
The axis that is normal to the plane. Valid values are:
  • 0 - the plane with x-axis as its normal
  • 1 - the plane with y-axis as its normal
  • 2 - the plane with z-axis as its normal
state
0 - off
1 - on

Example

To turn off the cutting plane with y-axis as its normal:

*setcuttingplaneactive 1 0

Errors

Incorrect usage results in a Tcl error. To detect errors, you can use the catch command:
if { [ catch {command_name...} ] } {
   # Handle error
}