I have an object which is a point with 3d cordinates:
class point:
def __init__(self, x, y, z):
self.x = x
self.y = y
self.z = z
and a cuboid of the following dimensions
LD1 = 0.05
LD2 = 0.025
Ld3 = 0.025
how can I generate a list of lets say 81-100 equally spaced points within this cuboid(!!!I don want any of them on the surface)? NOTE: these points I am going to use to generate a set of points on a sphere around each one
I tried generating a mesh and removing the part on the surface as seen below:
if xyz[i][0] != 0 and xyz[i][0] != LD1 and xyz[i][1] != 0 and xyz[i][1] !=LD23 and xyz[i][2]!=0 and xyz[i][2] !=LD23: