[Br...] Posted August 12, 2020 Share Posted August 12, 2020 Hello there, I am finding some problems regarding to excluding some measuringpoints. The thing is that I have to measure a sphere on 3 PAD's with 9 points each. So 27 points in total. For every PAD i would like to deleat the 5 lowest points. So that leaves 4 point per PAD and 12 in total. Right now I am measuring with vector points which I combine to a sphere. There will be fitted a lens with the same radius on those 3 PAD's so only the highest points are intersting. Does somebody now how to exclude those points? Sea attached picture. Thanks in advance for thinking with me, BramPADS.jpg Link to comment Share on other sites More sharing options...
[Is...] Posted August 12, 2020 Share Posted August 12, 2020 viewtopic.php?f=13&t=3342 Link to comment Share on other sites More sharing options...
[Is...] Posted August 12, 2020 Share Posted August 12, 2020 is a similar topic than the post from the link (there is a program attached there), this is an option using PCM: (consider too if the outer tangential element works for you) numberofpoints=9 for i=1 to numberofpoints Points[i]=getActual("Point"+i).z Point[i]=i next i for i=1 to numberofpoints for n = i + 1 to numberofpoints if Points[n] > Points[i] then Temp = Points[n] Points[n] = Points[i] Points[i] = Temp Temp = Point[n] Point[n] = Point[i] Point[i] = Temp endif next n next i for i=1 to numberofpoints display(formatL(Points[i],0,4) + " " + Point[i]) next i Link to comment Share on other sites More sharing options...
[Br...] Posted August 17, 2020 Author Share Posted August 17, 2020 Thank you for the response. I will loke into this. Have to run some tests Link to comment Share on other sites More sharing options...
[Cl...] Posted August 17, 2020 Share Posted August 17, 2020 Outer tangential would only look at the highest points? Wouldn't that essentially achieve the same result? Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in