Hi Simon,
Uh, that was some work. Now, I think, I figured it out
Try out the following CSV:
Code: Select all
1 0 0 0 0 1 0 0 0 0 1 12
1 0 0 0 0 1 0 0 0 0 1 13
1 0 0 0 0 1 0 0 0 0 1 1.4
1 0 0 0 0 1 0 0 0 0 1 1.5
You will see that there is a straight line of particles because your code reads the file as:
12
13
14
15
But z values of the CSV file are:
12
13
1.4 (!!!)
1.5 (!!!)
So, your code deletes the points and thinks the number "1.5" is the number "15."
That way the CSV files I gave to you are big as hell. Up to this day, I couldn't find them in the OR Viewer
So, could this be a problem why I cannot find my particles inside the OR Viewer?
Best wishes,
Thomas