*morphmaprecalc
Recalculate influences and prepare for mapping.
Syntax
*morphmaprecalc nlist nmark edgenode markedge facenode markface mode
Type
HyperMesh Tcl Modify Command
Description
Recalculate influences and prepare for mapping.
Inputs
- nlist
 - List mark number for nodes affected by mapping.
 - nmark
 - 0 - Use input list 0
 - edgenode
 - NODES
 - markedge
 - Node mark number for nodes on edge domains where handles will be created.
 - facenode
 - NODES
 - markface
 - Node mark number for nodes on 2D domains where handles will be created.
 - mode
 - 0 - Create temporary handles and calculate new influences
 
Example
*morphmaprecalc 0 0 NODES 2 NODES 3 0 
      This command is called before and after mapping operations in the user control sub-panel to enhance mapping speed. The command makes influence recalculation necessary only once, when entering the panel, rather than each time the user wishes to place a handle or edge.
Errors
Incorrect usage results in a Tcl error. To detect
        errors, you can use the catch
        command:
    if { [ catch {command_name...} ] } {
   # Handle error
}