i have some situation i run into every once in a while...
maybe someone could help me on that.
basically i have some sort of two groups of particles in one pointcloud.
in this example i distribute a so called self.__test_ID attribute along the particles.
half of them have a value of one and the others have zero.
now i would like to return the pointpositions of one of them groups!
so i thought i could filter out the other ones and all that's left should be the pointpositions of all particles with __test_ID = 0
BUT: as soon as at least one point of both groups is emitted there's one(or more?) value(s) at the center (of the universe ;) [0,0,0])
i think i should shrink the array so that there is just the number of points that are actually in the group, or so..??
i'm not quite into arrays that much...

EDIT: If i plug in a "Resize Array" between the filter and set data and setting the size to 1 and value to 0,0,0 it actually eliminates the center point(s).
but now i have an array per point, which isn't very good. ahhhrg, i don't get it