*createcenternode

Creates a node at the center of a circle defined by 3 input nodes.

Syntax

*createcenternode node_id1 node_id2 node_id3

Type

HyperMesh Tcl Modify Command

Description

Creates a node at the center of a circle defined by 3 input nodes.

Inputs

node_id1
The ID of the first node defining the circle.
node_id2
The ID of the second node defining the circle.
node_id3
The ID of the third node defining the circle.

Examples

To create a node at the center of the circle defined by nodes 100, 200 and 300:
*createcenternode 100 200 300

Errors

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