*morphshapecreatelist

Creates a number of new shapes from the morph list.

Syntax

*morphshapecreatelist name option color

Type

HyperMesh Tcl Modify Command

Description

This command creates a number of new shapes from the morph list.

Inputs

name
The base name of the shape.
option
The shape's save options. Valid values are:
  • 0 - Save as handle and node perturbations.
  • 1 - Save as pure node perturbations.
color
The color of of the shapes. Valid values are 1 through 64.

Example

To create shapes with the base name "shape" for all morphs on the morph list:
*morphshapecreatelist "shape" 1 33

Errors

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