Build Array / Modulo

2014-03-03 Thread olivier jeannel
Trying hard to wrap my brain around this : In a 3D Grid pointcloud (100x100) I want to select point ID 0, 5, 10, 15, 20, 25 ,30 , 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95 500, 505, 510, 515, 520, ...up to 595 1000, 1005, 1010, 1015, 1020 ...up to 1095 1500, 1505, 1510, 1515, 1520...

Re: Build Array / Modulo

2014-03-03 Thread Vladimir Jankijevic
modulo the index by 5 and test the output if equal to 0 with an 'if' node. This you can use to filter the points in question Best, Vladimir On Mon, Mar 3, 2014 at 5:47 PM, olivier jeannel wrote: > Trying hard to wrap my brain around this : > > In a 3D Grid pointcloud (100x100) I want to select

Re: Build Array / Modulo

2014-03-03 Thread Ahmidou Lyazidi
Hi Olivier, you can create an index array of size 319 and multiply it by 5. Cheers Le 3 mars 2014 17:48, "olivier jeannel" a écrit : > Trying hard to wrap my brain around this : > > In a 3D Grid pointcloud (100x100) I want to select point ID > > 0, 5, 10, 15, 20, 25 ,30 , 35, 40, 45, 50, 55, 60,