*createcirclefromcenterradius
Creates a circle or arc given the center and radius.
Syntax
*createcirclefromcenterradius list_id vector_id radius angle offset
Type
HyperMesh Tcl Modify Command
Description
This command creates a circle or arc given the center and radius.
Inputs
- list_id
- The ID of the list containing the nodes to be used as center points. A circle or arc is created for each node in the list.
- vector_id
- The ID of the vector defining the circle normal, defined using the *createvector command. This must be set to 1.
- radius
- The radius of the circle or arc.
- angle
- The angle of the arc. To create a circle, set to 360.
- offset
- Sets the starting offset for an arc.
Examples
*createvector 1 0.0 0.0 1.0
*createlist nodes 1 18
*createcirclefromcenterradius 1 1 3.0 360.0 0.0
Errors
if { [ catch {command_name...} ] } {
# Handle error
}