我正在编写这段代码,需要将对象作为函数中的参数发送。我的问题是其中一个对象需要以其原始值重新启动,但因为我需要从函数返回一个对象。
我不知道如何发送答案并将原始值安全地保存在对象中以供重用。有什么方法可以从类声明本身创建一个对象吗?
import math
class Points(object):
def __init__(self, x, y, z):
self.x = x
self.y = y
self.z = z
def __sub__(self, no):
no.x = no.x - self.x
no.y = no.y - self.y
no.z = no.z - self.z
return(no)
def dot(self, no):
ans = (self.x * no.x)+(self.y * no.y)+(self.z * no.z)
return ans
def cross(self, no):
x = (self.y * no.z)-(self.z * no.y)
y = (self.x * no.z)-(self.z * no.x)
z = (self.x * no.y)-(self.y * no.x)
self.x = x
self.y = y
self.z = z
return(self)
def absolute(self):
return pow((self.x ** 2 + self.y ** 2 + self.z ** 2), 0.5)
if __name__ == '__main__':
points = list()
for i in range(4):
a = list(map(float, input().split()))
points.append(a)
a, b, c, d = Points(*points[0]), Points(*points[1]), Points(*points[2]), Points(*points[3])
x = (b - a).cross(c - b)
y = (c - b).cross(d - c)
angle = math.acos(x.dot(y) / (x.absolute() * y.absolute()))
print("%.2f" % math.degrees(angle))
我想做类似的事情:
def function_name(self,other)
temp.x = self.x + other.x
temp.y = self.y + other.y
return temp
这样两个输入对象都会有它们的原始值,但我不知道如何获取该温度。
忽然笑
慕村9548890
相关分类