Jump to content

add noise to points but only in x and y axis


rickvdvulkaan

Recommended Posts

For modeling purposes, i want to add some noise to the position of the points, but without affecting the Z axis. So i tried the mountain SOP first, but i found no options to exclude the z axis. so i tried vops, with the noise and add node, but as expected this adds noise to all directions. I'm kind of stuck, as i'm still a beginner. Can someone point me in the right direction?

Link to comment
Share on other sites

Point Jitter SOP - axis scale z: 0

OR

Attribute Wrangle (Run Over Points):
Remember to click the little icon to create the parameter.

vector noise = noise(chv("offset")+@ptnum);
noise.z = 0;
@P += noise;

As with most things in Houdini, there are infinite ways to achieve a given effect.

Edited by Fenolis
  • 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...