gregor stemmer
GOgraphR
About Me
Connect
LOCATION
Not Specified
WEBSITE
Houdini Skills
Availability
Not Specified
Recent Forum Posts
Activating Houdini Apprentice offline? June 4, 2023, 10:59 p.m.
Can I independently control the F-Stop Near and F-Stop Far ? June 4, 2023, 10:14 p.m.
Short answer: No, the two are not independently adjustable.
In lack of a better explanation: Depth of field [en.wikipedia.org]on Wikipedia.
Sorry! Just can't explain it better than they already did !
In lack of a better explanation: Depth of field [en.wikipedia.org]on Wikipedia.
Sorry! Just can't explain it better than they already did !
Can really VEX save so much memory? June 4, 2023, 9:30 p.m.
I think it like this:
Wrangle
DATA= ((0,-1,0));
pts= ( (p1,DATA), (p2,DATA)...);
AttrCreate
pts = ( (p1,(0,-1,0)); (p2,(0,-1,0))...);
Which means in Attrcreate you have n times the vector stored, but in Wrangle vector is stored once, but referenced n times, which is less memory consuming. And this is the principlpe of instncing.
Wrangle
DATA= ((0,-1,0));
pts= ( (p1,DATA), (p2,DATA)...);
AttrCreate
pts = ( (p1,(0,-1,0)); (p2,(0,-1,0))...);
Which means in Attrcreate you have n times the vector stored, but in Wrangle vector is stored once, but referenced n times, which is less memory consuming. And this is the principlpe of instncing.