Jump to content

Isolate just a point from point rings


Recommended Posts

Hello,

I'm doing this Mold forest..I'm struggling with the UVs..

I have this tubes like structures , I create two groups , the bottom and top rings ....so I can run a shortestes path node to drw the seam path , the problem is that I must have one of this two groups with only one point per ring to draw only ONE path...

This Tubes are part of a model wich I split on threee parts, the floor, this tubes, and the tips..  

for the tips the technique works perfectly  so you can see what I want to achieve on the hip file ...

It's difficult to explained I guess... This image show the top ring group..

moldbody.jpg

Fungus_67.hiplc

Edited by jmquintela
Link to comment
Share on other sites

So you need to remove all the points from the point group except for one?

I can't run Houdini on my laptop but I would say off hand the easiest way to do that would be something like this in a point wrangle
 

if (@ptnum % NumberOfPointsOnARing > 0)
  i@group_topedges = 0;

That should isolate the first point on the ring.  Basically this uses the modulo operator to find the point number that divides without a remainder into the number of points in the ring.  Under most circumstances it should work, however a sort sop for example would break it.

Link to comment
Share on other sites

Thanks !, I will try that and see what's up!

mmm I will not be able to use this technique because rings have different amount of point between 15 and 17, sooo some give me 1 point, others 2 , other non, a little mess...

but you know I found a work around, I'll post the final at wip section on this days.. thanks any way ;) 

Edited by jmquintela
Link to comment
Share on other sites

Hi, would this work for you?
I created an attribute based of the primitive vertex number to hold information coming from the earlier stages of the network graph, passing it all the way down to be used as an edge seam.

Fungus_67_v2.jpg

I also had to add a facet with cusping prior to flattening the uvs because I couldn't get the mold stems to fan out.

I was also looking into passing it through a for loop, but I'm worried that the setup would very much slow down even more.

What is your computer specs? My PC takes processing of the whole network way too long, I had to scale down your topmost circle SOP in order to work on just a portion of it. :lol:

Inside the hip file, the one's that I added/modified are colored neon green.
Fungus_67_v2.zip
H15.5.673 Indie

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...