How to identify unused 3D curves in model space using a program?
How to identify unused 3D curves in model space using a program?
(OP)
Hi all,
Is there anyway to identify the unused 3D curves in Model space by using a program?
Any help in this regard is greatly appreciated.
Thanks in advance
Is there anyway to identify the unused 3D curves in Model space by using a program?
Any help in this regard is greatly appreciated.
Thanks in advance





RE: How to identify unused 3D curves in model space using a program?
Dim type As Integer = UFConstants.UF_curve_type
Dim aCurve As NXOpen.Tag = NXOpen.Tag.Null
Do
ufs.Obj.CycleObjsInPart(workPart.Tag, type, aCurve)
If aCurve <> NXOpen.Tag.Null Then
' test here if the found curve as some children features
' if not > it's unused...
End If
Loop Until thisPattern = NXOpen.Tag.Null
RE: How to identify unused 3D curves in model space using a program?
RE: How to identify unused 3D curves in model space using a program?
John R. Baker, P.E.
Product 'Evangelist'
Product Engineering Software
Siemens PLM Software Inc.
Industry Sector
Cypress, CA
http://www.siemens.com/plm
UG/NX Museum: http://www.plmworld.org/p/cm/ld/fid=209
To an Engineer, the glass is twice as big as it needs to be.
RE: How to identify unused 3D curves in model space using a program?