Digistruct 0 Posted November 11, 2018 Hey, I'm curious as to if is is possible to have a switch node change based on the bbox size of the input. Say that if the XSIZE is the largest then it outputs to 1, YSIZE 2, ZSIZE 3. Is this possible and if so, how? Thanks! Share this post Link to post Share on other sites
3dome 112 Posted November 11, 2018 (edited) sure you can if(bbox("../box1/", D_XSIZE)>bbox("../box1/", D_YSIZE)&&bbox("../box1/", D_XSIZE)>bbox("../box1/", D_ZSIZE), 0, if(bbox("../box1/", D_YSIZE)>bbox("../box1/", D_ZSIZE), 1, 2)) dm_switchByBbox.hip Edited November 11, 2018 by 3dome attach file Share this post Link to post Share on other sites
Digistruct 0 Posted November 12, 2018 Huge thanks, 3dome! Share this post Link to post Share on other sites