We are trying to map multiple sets of 3000 randomly generated 3D coordinates.
pts = RandomInteger[100, {3000, 3}];
pts2 = RandomInteger[100, {3000, 3}];
We are able to make a Voronoi mesh of a single set.
VoronoiMesh[pts]
But we are unable to Map VoronoiMesh across multiple sets of data.
Map[VoronoiMesh[#] &, {pts, pts2}]
We attempted this on a computer with 256GB memory and when the function failed and the notebook went out of memory. We attempted this multiple times on multiple machines and had the same issue across the board. From that we assume the problem is from some issue of how the 3D capabilities of the VoronoiMesh function is implemented.
Attachments: