Selection Mask Array
Selection Mask Array
(OP)
I was wondering how to have the NX Journal selection mask array select all curves including lines and splines. So far If I use
.Type = UFConstants.UF_line_type
or
.Type = UFConstants.UF_spline_type
I can filter for either a line or a spline. But I would like to filter for all curves.
--------------------------------------------------------------
This is the selection mask portion of my code:
Dim selectionMask_array(1) As Selection.MaskTriple
With selectionMask_array(0)
.Type = UFConstants.UF_line_type
.Type = 1
.Subtype = 0
.SolidBodySubtype = 0
End With
.Type = UFConstants.UF_line_type
or
.Type = UFConstants.UF_spline_type
I can filter for either a line or a spline. But I would like to filter for all curves.
--------------------------------------------------------------
This is the selection mask portion of my code:
Dim selectionMask_array(1) As Selection.MaskTriple
With selectionMask_array(0)
.Type = UFConstants.UF_line_type
.Type = 1
.Subtype = 0
.SolidBodySubtype = 0
End With





RE: Selection Mask Array
Dim selectionMask_array(1) As Selection.MaskTriple
selectionMask_array(0).Type = UFConstants.UF_line_type
selectionMask_array(0).Subtype = 0
selectionMask_array(0).SolidBodySubtype = 0
selectionMask_array(1).Type = UFConstants.UF_spline_type
selectionMask_array(1).Subtype = 0
selectionMask_array(1).SolidBodySubtype = 0
Regards
Frank Swinkels