PSI-CAD
Computer
- Feb 13, 2009
- 997
Hi,
Find herewith a part to explain the bug in NX12
Open the part
Have a look at the content and associative points and datums
Change user expression move_face from 1 to 2
Check that the point and datums are not correct
Apply filter dimensions on the ANT
Then edit all dimensions one by one
Then check that points and datums are correct now
This bug is corrected in NX1953, but my customer stay in NX12 at the moment
So, I need an NXOpen programm to edit all dimensions.
I started with the following lines to list all the measures
For Each tempFeat As Features.Feature In workPart.Features
If TypeOf (tempFeat) Is MeasureMaster Then
lw.WriteLine("Measure name: " & tempFeat.GetFeatureName)
End If
Next
Now, I have to find all parents of each measure to be able to create the edit builder
Thanks in advance for your help
Regards
Didier Psaltopoulos
Find herewith a part to explain the bug in NX12
Open the part
Have a look at the content and associative points and datums
Change user expression move_face from 1 to 2
Check that the point and datums are not correct
Apply filter dimensions on the ANT
Then edit all dimensions one by one
Then check that points and datums are correct now
This bug is corrected in NX1953, but my customer stay in NX12 at the moment
So, I need an NXOpen programm to edit all dimensions.
I started with the following lines to list all the measures
For Each tempFeat As Features.Feature In workPart.Features
If TypeOf (tempFeat) Is MeasureMaster Then
lw.WriteLine("Measure name: " & tempFeat.GetFeatureName)
End If
Next
Now, I have to find all parents of each measure to be able to create the edit builder
Thanks in advance for your help
Regards
Didier Psaltopoulos