我正在尝试写出 3d 对象的坐标,但我不确定如何列出它。
到目前为止,我有:
class threed:
def __init__(self,length,width,height):
self.h =height
self.l = length
self.w = width
self.f=0
self.lwh = (length,width,height)
for i in range(1,3):
for j in range(1,3):
for k in range(1,3):
coordinates=threed(i,j,k)
问题是我的函数每次都会重写变量坐标,因此我永远无法访问坐标 (1,1,1)。
请注意,以上是针对 2x2x2 对象的。
如何有效地编写它以便我可以根据需要引用任何坐标?