*body_split_with_points
Split a set of solids or surfaces along a spline constructed from a series of specified points.
Syntax
*body_split_with_points entity_type mark_id splinepoints size options
Type
HyperMesh Tcl Modify Command
Description
Splits surfaces or solids using swept lines.
Inputs
- entity_type
 - The type of entities being split: solids or surfaces.
 - mark_id
 - The mark that contains the entities being split.
 - splinepoints
 - An array of X, Y, Z coordinates for a series of points. HyperMesh uses these points to generate the splitting surface.
 - size
 - The number of entries in the splinepoints argument.
 - options
 - Determines the extent of the split:
 
Examples
*createmark solids 1 1
*createdoublearray 9 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0
*body_split_with_points solids 1 1 9 0Errors
if { [ catch {command_name...} ] } {
   # Handle error
}