*delaunay_2d_3d

Performs 2D/3D triangulation of selected nodes.

Syntax

*delaunay_2d_3d type entity_type mark_id reserved

Type

HyperMesh Tcl Modify Command

Description

Performs 2D/3D triangulation of selected nodes.

Inputs

type
The type of triangulation to perform.
2 - 2D triangulation
3 - 3D triangulation
entity_type
Must be set to nodes.
mark_id
The ID of the mark containing the input entities. Valid values are 1 and 2.
reserved
Reserved for future use. Must be set as "".

Examples

To 2D triangulate the displayed nodes:

*createmark nodes 1 displayed
*delaunay_2d_3d 2 nodes 1 ""

Errors

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

Version History

2019