DrGRilla Posted August 29, 2018 Share Posted August 29, 2018 Hey ODForce folks, looking for guidance or a method to achieve a similar sort of effect with noise/curl noise. There are more than enough methods here to achieve the base look whether that be through converting to a volume and advecting points / fluid source etc, however, I can't come up with a method to influence or incorporate another element into the noise on a grid(or any other geo) seamlessly. I thought about using curves to influence the velocity in an attempt to shape it but no bananas. Any ideas? Attached is a ref from Christoph Bader's Wired feature which is ultimately the effect I'm trying for, specifically the 2nd and 4th piece of the set. Quote Link to comment Share on other sites More sharing options...
Atom Posted August 29, 2018 Share Posted August 29, 2018 (edited) Check out this link. Also... Edited August 29, 2018 by Atom 2 Quote Link to comment Share on other sites More sharing options...
ParticleSkull Posted August 29, 2018 Share Posted August 29, 2018 hey Atom, do you know a way to put some "custom" frequency to the aaflownoise? By custom I mean: get an object/attribute from outside to control it Quote Link to comment Share on other sites More sharing options...
Hamp Posted August 29, 2018 Share Posted August 29, 2018 Hi Alvaro! This might be interesting in some way? https://www.youtube.com/watch?v=H-2GOIDQgnA 2 Quote Link to comment Share on other sites More sharing options...
Atom Posted August 29, 2018 Share Posted August 29, 2018 (edited) flownoise is a basic VEX function so you can use external references to drive the various input styles. See doc for types of inputs. http://www.sidefx.com/docs/houdini/vex/functions/flownoise.html In a simple scenario you could plug a moving point into input #2 of the wrangle to modify an existing point. float flow_amount = @Time * ch("mult"); float noise = flownoise(v@opinput1_P,flow_amount); @P *= noise; Edited August 29, 2018 by Atom 1 Quote Link to comment Share on other sites More sharing options...
DrGRilla Posted August 30, 2018 Author Share Posted August 30, 2018 21 hours ago, Atom said: Check out this link. Also... Cool methods for generating the base look, much appreciated for the alternative method links. How would you go about, taking the ref image for example, embedding the '0513' that's visible in each image? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.