*solid_untrim

Untrims solids by removing surfaces that separate them.

Syntax

*solid_untrim mark_id force

Type

HyperMesh Tcl Modify Command

Description

This command creates a full or partial cone or cylindrical solid.

Inputs

mark_id
The ID of the mark containing the surfaces to untrim. Valid values are 1 and 2.
force
0 - Only surfaces that separate solids (solid on both sides) are removed.
1 - Surfaces are deleted even if there is no solid on one of the sides. Normally this causes solid destruction but it may be useful as a way to remove solid cavities.

Example

To untrim surface 100:

*createmark surfs 1 100
*solid_untrim 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
}