nbjsargent Posted November 10, 2011 Share Posted November 10, 2011 I'm not sure I understand what the difference between the Random vs. Non-deterministic Random VEX nodes and how I would apply these differences. Could someone expound on this topic? A simple example file would be kindly appreciated if possible! Thanks. Quote Link to comment Share on other sites More sharing options...
tmdag Posted November 10, 2011 Share Posted November 10, 2011 (edited) 'standard' random is a fast random generation number that could be based on some input (for eg. Point numbers or point positions). For eg. If you set random number to be based on point numbers, no matter what position your points will have during time, generated number will be always the same. Non deterministic is a generator of random numbers that cannot be based on anything. Also, that random number is beeing genetated every time node is evaluated so it is impossible to recreate same result. And like you have probably noticed, you can choose between three different types of random number generation algorythm. Edited November 10, 2011 by tmdag Quote Link to comment Share on other sites More sharing options...
nbjsargent Posted November 10, 2011 Author Share Posted November 10, 2011 'standard' random is a fast random generation number that could be based on some input (for eg. Point numbers or point positions). For eg. If you set random number to be based on point numbers, no matter what position your points will have during time, generated number will be always the same. Non deterministic is a generator of random numbers that cannot be based on anything. Also, that random number is beeing genetated every time node is evaluated so it is impossible to recreate same result. And like you have probably noticed, you can choose between three different types of random number generation algorythm. Thanks for the explanation! 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.