Recently I had the problem testing a set of points and now I´m having the same case with vectors. It consists in the equality operator == for both. I´m comparing a a couple of sets whose numbers of decimals are 6. I can see in the screen the same values of theirs components (x,y,z - points and vectors) but the “==” test result is “false”. I solved this with Math.Round to 4 decimals for each component value and “and - &&” operator for those values.
There is a straight way? seems this is a very simple operation of comparing numbers but… thank you