Hi Guys,
I am wondering if there is any way in vex to compare between two arrays to get the difference.
Please let me know is there any way to do this,
below is what I am trying to do
s[]@attribsA = detailintrinsic(0, "pointattributes");
s[]@attribsB = detailintrinsic(1, "pointattributes");
s[]@AB = @attribsA - @attribsB; //need mismatched attributes in a
s[]@BA = @attribsB - @attribsA; //need mismatched attributes in b
Thanks a lot in advance!