correct me if i shouldn't be doing things this way, but basically in a wrangle sop rather than creating a bunch of separate control channels, i want to make one matrix3 and then access the individual components.
here's a couple ways i've tried:
matrix3 testMatrix = ch3("testMatrix");
f@testValA = testMatrix[0][0];
f@testValB = getcomp(testMatrix, 0, 0);
f@testValC = testMatrix[0:0];
i apologize if this is beyond n00b, but i've tried over an hour to figure this out and got no where.
thanks!