How can I generate an array of all the integer (x,y,z) points within specified ranges of each axis without just doing a triple for loop? Something better than this...(I've looked at meshgrid functions but do not understand how to apply them here).
points = []
for i in range(-x,x):
for j in range(-y,y):
for k in range(-z,z):
points.append((i,j,k))