Hi folks - is there any way to remove a point or prim group in VEX?
My use case is that I create a temp point group at the beginning of my network, do some things, then move some points with a PointWrangle. I then delete the temp point group with a group node. Would be great to just do that in VEX though and spare the node. Any way to do that? Can't find anything in the docs.
Remove group in VEX
10852 6 1- KMcNamara
- Member
- 228 posts
- Joined: Dec. 2012
- Offline
- Tesla_s_fan
- Member
- 129 posts
- Joined: Jan. 2013
- Offline
U can use addgroup() and removegroup() in vex (pointwrangle);
U can use setpointgroup( geoself(), string name, int pt, int addOrRemoveFromGroup ) in cvex (attribwrangle);
if addOrRemoveFromGroup == 1 , the point will be add into group;
if addOrRemoveFromGroup == 0 , the point will be remove from group;
The help document not correct.
U can use setpointgroup( geoself(), string name, int pt, int addOrRemoveFromGroup ) in cvex (attribwrangle);
if addOrRemoveFromGroup == 1 , the point will be add into group;
if addOrRemoveFromGroup == 0 , the point will be remove from group;
The help document not correct.
- KMcNamara
- Member
- 228 posts
- Joined: Dec. 2012
- Offline
- Tesla_s_fan
- Member
- 129 posts
- Joined: Jan. 2013
- Offline
- Red-Juice
- Member
- 14 posts
- Joined: Aug. 2015
- Offline
- akirasun_sh
- Member
- 26 posts
- Joined: Dec. 2019
- Offline
- jsmack
- Member
- 8045 posts
- Joined: Sept. 2011
- Offline
-
- Quick Links