Okay, I’m struggling to make the title Explanatory.
Using the Graphing Calculator, I need to fill every grid square in the plane with n pseudo random points. Obviously, I need to limit the “render distance”, so I create a list of the grid squares that are on screen. To make sure each grid square keeps the same set of random points no matter where the viewport is centered, each grid square needs a unique seed (I just do seed = i + j * 2^26).
But Desmos’s lack of support for nested lists kills me. I need to generate a list of random points for each grid square in a list of grid squares.
I want to do random(n, seeds), but seeds is a list of seeds, and it doesn’t work. If I didn’t need the seeds, I could just do random(n * m), where m is the number of grid squares to cover, but I can’t.
Edits (links):
Here’s a link to where I was testing my options: https://www.desmos.com/calculator/3tmhlncqlj
And here was the intended application, where I’m still using a pacman style wraparound method to shuffle points around instead of generating new ones (the color scheme is intended for reverse contrast mode, fyi, which can be activated in the graph settings at the top right of the screen, the little wrench thing): https://www.desmos.com/calculator/28h4n2o4kc