hm_getfilletfaces

Returns the faces containing fillets with a radius inside a range.

Syntax

hm_getfilletfaces radius_min radius_max

Type

HyperMesh Tcl Query Command

Description

Returns the faces containing fillets with a radius inside a range.

Inputs

radius_min
The minimum radius value.
radius_max
The maximum radius value.

Example

To get the faces with fillets with a radius between 5 and 15:

hm_getfilletfaces 5 15

Errors

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