hm_getadjsurfacesfromsurface

Returns the surfaces adjacent to the specified surface.

Syntax

hm_getadjsurfacesfromsurface surface_id

Type

HyperMesh Tcl Query Command

Description

Returns the surfaces adjacent to the specified surface.

Inputs

surface_id
The ID of the surface to query.

Example

To get the adjacent surfaces for surface 100:

hm_getadjsurfacesfromsurface 100

Errors

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