Hi there, I'm trying to read the "Primitive UVW" attribute generated by an Intersection Analysis SOP node in my VEX code. The attribute in question is an array of float tuples and I have no idea how I'd read that in VEX.
Example attribute value:
[ (0.365639, 0.0, 0.0), (0.0526581, 0.0, 0.0) ]
I can't find anything about arrays of tuples in the documentation, so I've tried the C style 2D array syntax
and treating the array of tuples as an array of vectors
... none of which actually returned the results I was expecting. Currently I'm using a python node as a workaround, since that one can deal with tuples properly, but I'd like to keep my project VEX only, so I'd kindly ask if anyone knows how to read such arrays properly.