Skip to content

Instantly share code, notes, and snippets.

@simonreeves
Last active September 28, 2020 13:29
Show Gist options
  • Save simonreeves/95642317f3c33849d38de078c0abe3fb to your computer and use it in GitHub Desktop.
Save simonreeves/95642317f3c33849d38de078c0abe3fb to your computer and use it in GitHub Desktop.
#houdini #vex
// get the max by looping over the points
int pc = npoints(0);
printf('pc %s\n', pc);
for(int i=0; i < pc; i++) {
// careful with printing on a large mesh
// printf('point: %s\n', i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment