thickness avg/min/max
Hi,
i'm pretty new in the IPP world ; i'm a programmer and i'm doing a contract for a client to merge all their macros from IPP 7 to IPP 9.1.
My client was using the thickness measurement tool in IPP 7. The behavior with this tool was that a new measure is added with the average, the min and the max of the thickness between two measures.
When I use the tool that seems to be the same in IPP 9.1, I'm not getting the same behavior. Rather than get one new measure with avg/min/max I got dozen and dozen of new measures.
What I have to do to get the same behavior than in IPP 7 ?
Thanks in advance.
i'm pretty new in the IPP world ; i'm a programmer and i'm doing a contract for a client to merge all their macros from IPP 7 to IPP 9.1.
My client was using the thickness measurement tool in IPP 7. The behavior with this tool was that a new measure is added with the average, the min and the max of the thickness between two measures.
When I use the tool that seems to be the same in IPP 9.1, I'm not getting the same behavior. Rather than get one new measure with avg/min/max I got dozen and dozen of new measures.
What I have to do to get the same behavior than in IPP 7 ?
Thanks in advance.
0
Answers
Yuri
I just told this to my client and he said to me that the "distance between centers" don't do the same job that what we have in IPP 7.
I attached a file of an example of what my client needs to do.
IpMeasTool(MEAS_CTHICK) was the command used in the macro of IPP 7 to do what they want.
Can you help me ?
Thanks,
Martin
"Distance between centers" reports average distance between traces only when the selected features are poly-lines. In your case they are polygons, so the tool returns distance between centers of polygons, not really what you need.
You can use Incremental distance in that case.
1. Create 2 polygons, for internal and external outlines. (use measurements Polygon tool).
2. Select these 2 polygons. Note that the order of selection is important, select first Internal and then External polygon.
3. Click the "Incremental Distance" button using "Shortest" measurement type.
The result will report all distances in the Line:Length column, note that the statistics pane will show all necessary values (Min, Max, Average, Std.Deviation,...).
You can also get this statistical measurements in macro:
The output is:
Regards,
Yuri
many thanks for this nice answer.