So I have attached a video of the working of the installation- what I want to achieve is that each square acts as a pixel of image mapper. The square should give value either 90 to open up the 2 triangles or 0 for it to remain closed so basically creating solids (black) and voids (white) on square by this mechanism and creating the image.
I tried making the script but the problem is I don’t understand how to connect the output value of remapped image sampler to the units, plus I feel the image sampler is not actually giving correct values as per the image.
List Item wants an Index, not an object, it seems you’re asking it for the point located at 0,0,0, but it’s in fact giving you a point that has an index of 0. (For example your index of 48,42,12, is actually generating an index of 65)
You need to practice list management, you’re trying to isolate individual components, which makes your script much bigger than it needs to be (making it slow to compute)
I would advise you against plugging two wires into one input generally - either use merge, entwine or weave to manage the data lists properly
Pay attention when you’re supplying items, lists and trees, they require you to handle them differently - for example your Surface Closest Point is duplicating your points from 144 to 2304, this looks like a mistake and I’m not even sure what you’re trying to achieve after that
Here is one way to approach this - try to rebuild it, see how much of it makes sense
I’m quite new to the list component. I’ll try to improve my skills. But thank you so much for the help. This made much more sense then whatever I was trying to do.