*nodecreateatpointmark
Creates free nodes at the same locations as the points placed on the input mark.
Syntax
*nodecreateatpointmark mark_id
Type
HyperMesh Tcl Modify Command
Description
The command creates free nodes at the locations specified by points on the input mark.
Inputs
- mark_id
- The ID of the mark containing the input points.
Examples
To create free nodes at the location of the points ID 123 and
45:
*createmark points 1 123 45
*nodecreateatpointmark 1
Errors
Incorrect usage results in a Tcl error. To detect
errors, you can use the catch
command:
if { [ catch {command_name...} ] } {
# Handle error
}