*surfacemarkremovepinholes

Removes pinholes.

Syntax

*surfacemarkremovepinholes mark diameter coords arraylength

Type

HyperMesh Tcl Modify Command

Description

Removes pinholes.

Inputs

mark
The mark ID containing the surfaces.
diameter
The upper-limit of the pinhole’s diameter.
coords
The ID of a double-array listing the center coordinates of the pinholes to remove, in the order x1, y1, z1, x2, y2, z2, x3, y3, z3.
arraylength
The array length.

Examples

To remove 3 pinholes from surface 471, using a radius of 5.0 as a guide:
*createmark(surfaces,1) 471
*createdoublearray(9) 1577.74 500.9 690.69 1580.8 502.6
683.4 1583.8 504.2 676.207
*surfacemarkremovepinholes(1,5,1,12)

The *createmark() and *createdoublearray() commands are required.