michaelk 467 Posted September 26, 2020 In a parametric object is there a way to tell if a point inside the parametric object is in the boundary of another object not in the parametric object? Quote Share this post Link to post
Julian Carr 111 Posted September 26, 2020 You could try : PtInPoly(pX, pY : REAL; h : HANDLE):BOOLEAN; Quote Share this post Link to post
michaelk 467 Posted September 26, 2020 Love it when Australia is up! Thanks, Jualian. I'll give that a try. Quote Share this post Link to post
michaelk 467 Posted September 26, 2020 Here's my confusion. Will the point in a parametric object know where it is relative to the rest of the world? Or just relative to its own insertion point? Back to the function reference… Quote Share this post Link to post
Pat Stanford 1,442 Posted September 26, 2020 Tell us what you are really trying to do rather than asking cryptic questions. ;-) Quote Share this post Link to post
Julian Carr 111 Posted September 26, 2020 You need to get the insertion point of the PIO using GetSymLoc() then add the internal offset within the PIO to that. 1 Quote Share this post Link to post
JBenghiat 333 Posted September 26, 2020 15 hours ago, Julian Carr said: You need to get the insertion point of the PIO using GetSymLoc() then add the internal offset within the PIO to that. You also need to take into account the PIO’s rotation. RelativeCoords can help with that. Also, make sure to keep straight whether you’re translating the external point to the plug-in space or the other way around. Quote Share this post Link to post