I am wondering if there is a way in vex to compare between two arrays and return the difference as third array,
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!