Jump to content

Reproduce noise pattern via manipulating UVs


Recommended Posts

Hey guys
I'm trying to reproduce same noise pattern which originally created by blender.

In original video(@00:01:40), author used Mapping node to manipulate UVs.

62ebdf3cc0ade_Screenshot2022-08-04224801.thumb.jpg.7954a431516b8cc9822bab9f3002b46c.jpg

 

 

In houdini, I tried UV Position VOP node but unfortunately can't get reasonable result.

Thanks for any help

Cheers

NoisePatternTest.hiplcFetching info...

Link to comment
Share on other sites

@akirasun i houdini 2000 ways... Blender :rolleyes:

Grid, Noise ,bbox(0, D_XSIZE),Copy Sop, than

//on prim
vector min, max;
getbbox(min, max);
v@min = min;
v@max = max;

 

vector min = prim(geoself(), "min", 0);
 vector max = prim(geoself(), "max", 0);
 
 float height = chf("height");
 float radius = chf("radius");
 float rMin = radius;
 float rMax = radius + height;
 float r = fit(@P.y, min.y, max.y, rMin, rMax);
 

 float radianMin = 0.0;
 float radianMax = 2.0 * $PI;
 float radian = fit(@P.x, max.x, min.x, radianMin, radianMax);
 

 float x = r * cos(radian);
 float y = r * sin(radian);
 float z = 0;
 @P = set(x, y, z);


 

fhdrer.jpg

  • Like 1
Link to comment
Share on other sites

  On 8/4/2022 at 3:54 PM, Librarian said:

@akirasun i houdini 2000 ways... Blender :rolleyes:

Grid, Noise ,bbox(0, D_XSIZE),Copy Sop, than

//on prim
vector min, max;
getbbox(min, max);
v@min = min;
v@max = max;

 

vector min = prim(geoself(), "min", 0);
 vector max = prim(geoself(), "max", 0);
 
 float height = chf("height");
 float radius = chf("radius");
 float rMin = radius;
 float rMax = radius + height;
 float r = fit(@P.y, min.y, max.y, rMin, rMax);
 

 float radianMin = 0.0;
 float radianMax = 2.0 * $PI;
 float radian = fit(@P.x, max.x, min.x, radianMin, radianMax);
 

 float x = r * cos(radian);
 float y = r * sin(radian);
 float z = 0;
 @P = set(x, y, z);


 

fhdrer.jpg

Expand  

 

Wow, GJ!

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...