*UpdateLatitudeLineDrag
This command updates the latitude line shape and the addendum surface shape, after the latitude line handle drag.
Syntax
*UpdateLatitudeLineDrag int_type
Type
HyperMesh Tcl Modify Command
Description
This command updates the latitude line shape if int_type value is 6. It updates the latitude line shape and the addendum surface shape if int_type value is 1.
Inputs
- int_type
- To update the latitude lines its value is 6.
Examples
To update the latitude lines shape:
*UpdateLatitudeLineDrag 6
To update the latitude lines shape and the addendum surface shape:
*UpdateLatitudeLineDrag 1
Errors
Incorrect usage of UpdateLatitudeLineDrag results in a Tcl error. The function returns an error if the current model does not contain latitude line or addendum surface.
if { [ catch { *UpdateLatitudeLineDrag 6} ] } {
# Handle error here // I don’t find latitude lines.
}