Hi everyone,
I have 2 lists of points and I’m trying to find a way how to compare these two by only X & Y coordinates (both lists have different Z values).
Let’s say I have two lists of points:
List1
Point (0,0,1)
Point (1,1,1)
Point (2,2,1)
Point (3,3,1)
Point (4,4,1)
List2
Point (0,0,2)
Point (1,1,2)
Point (2,2,2)
Point (3,3,2)
Output should be items from List1:
Point (0,0,1)
Point (1,1,1)
Point (2,2,1)
Point (3,3,1)
Any ideas? I have a headache at this moment and can’t really solve this by myself.
Thanks.