Connecting nearest points using nearpoints function

   2691   1   1
User Avatar
Member
1 posts
Joined: May 2020
Offline
Hi,
int npts = nearpoints(0, @p, ch(“Length”), 8);
foreach(int pt; npts)
{
if(pt >= @ptnum && pt != @ptnum){
addprim(npts, “polyline”, @ptnum, pt);
}
}

Above is the vex code I am using to connect points.But it is working only once. And I am trying to achive the connection as shown below.

Any help will be great.

Thank you.

Attachments:
Annotation 2020-06-10 225114.jpg (72.7 KB)

User Avatar
Member
679 posts
Joined: Feb. 2017
Offline
Hey NaveenSaiNikhilBalam,

nearpoints returns an array of points so you need to store them in an array. I think it's better to use pcopen as it returns the attribute you specified. in your case P.

Cheers
CYTE
  • Quick Links