*setcuttingplanethicknesson

Turns the specified cutting plane thickness on/off.

Syntax

*setcuttingplanethicknesson axis state

Type

HyperMesh Tcl Modify Command

Description

Turns the specified cutting plane thickness 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
Specifies the thickness state for the specified cutting plane. Valid values are:
  • 0 - off
  • 1 - on

Example

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

*setcuttingplanethicknesson 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
}