Hello, guys!
I keep having an issue when I try to compare attributes from two distinct points.
The VEX program tests if they are equal, like this:
if(ptu == t_start)
And although I see in the geometry spreadsheet that they are, the VEX code say they aren't.
I thought It was a precision problem, so I rounded both values to a three float precision value
//round
t_start = rint(t_start * 1000)/1000;
t_end = rint(t_end *1000)/1000;
ptu = rint(ptu * 1000)/1000;
This was the solution for some points and for others, the problem persisted.
Some still have the same values in the spreadsheet and the VEX code interprets them as different values.