Filter points by color
5137 3 0-
- mwnz
- Member
- 19 posts
- Joined: May 2016
- Offline
-
- Enivob
- Member
- 2657 posts
- Joined: June 2008
- Offline
You could use VEX to place certain points within a color range into their own group. Making groups in VEX is easy, you just prefix a name with the string constant ‘group_’.
Here is how you can place all points with with a dark red component into a dark_red group.
Follow up the point wrangle with another node that operates on the newly created group. For instance, Delete with the non-selected option enabled.
Here is how you can place all points with with a dark red component into a dark_red group.
if (v@Cd.r <0.5) { group_dark_red = 1; }
Edited by Enivob - Sept. 15, 2016 14:29:21
Using Houdini Indie 20.5
Windows 11 64GB Ryzen 16 core.
nVidia 3060RTX 12BG RAM.
Windows 11 64GB Ryzen 16 core.
nVidia 3060RTX 12BG RAM.
-
- mwnz
- Member
- 19 posts
- Joined: May 2016
- Offline
-
- Enivob
- Member
- 2657 posts
- Joined: June 2008
- Offline
-
- Quick Links