Saori Yoshimoto work notes since 2018

Wednesday, October 9, 2019

[VEX] Loops and flow control

https://www.sidefx.com/docs/houdini/vex/statement.html

-for loop
for( int i=0; i<10; i++ ){
   int pp = addpoint(geoself(), set(0,i,0));
}

-foreach loop
foreach (value; array) statement
foreach (index, value; array) statement

No comments:

Post a Comment