-
Notifications
You must be signed in to change notification settings - Fork 0
/
ponto_41839.py
executable file
·107 lines (70 loc) · 2.04 KB
/
ponto_41839.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
from vetor_41839 import Vetor3D
class Ponto3D:
def __init__(self, x, y, z):
self.x = x
self.y = y
self.z = z
def get_x(self):
return self.x
def get_y(self):
return self.y
def get_z(self):
return self.z
def __str__(self):
return "Ponto3D(" + str(self.get_x()) + ", " + str(self.get_y()) + ", " + str(self.get_z()) + ")"
def adiciona_vetor(self, um_vetor):
x = self.x + um_vetor.get_x()
y = self.y + um_vetor.get_y()
z = self.z + um_vetor.get_z()
return Ponto3D(x, y, z)
def __add__(self, um_vetor):
return self.adiciona_vetor(um_vetor)
def subtrai_ponto(self, ponto_inicial):
x = self.x - ponto_inicial.get_x()
y = self.y - ponto_inicial.get_y()
z = self.z - ponto_inicial.get_z()
return Vetor3D(x, y, z)
def __sub__(self, ponto_inicial):
return self.subtrai_ponto(ponto_inicial)
if __name__ == "__main__":
print("teste ao construtor")
p1 = Ponto3D(1.0, 2.0, 3.0)
print()
print("teste a get_x")
print("coordenada x de p1 = ")
print(p1.get_x())
print()
print("teste a get_y")
print("coordenada y de p1 = ")
print(p1.get_y())
print()
print("teste a get_z")
print("coordenada z de p1 = ")
print(p1.get_z())
print()
print("teste a __str__")
print("p1 = ")
print(p1)
print()
print("teste a adiciona_vetor")
v1 = Vetor3D(10.0, 20.0, 30.0)
p2 = p1.adiciona_vetor(v1)
print("v1 = ")
print(v1)
print("p2 = ")
print(p2)
print()
print("teste a +")
p3 = p1 + v1
print("p3 = p1 + v1 = ")
print(p3)
print()
print("teste a subtrai")
v2 = p2.subtrai_ponto(p1)
print("v2 = ")
print(v2)
print()
print("teste a -")
v3 = p2 - p1
print("v3 = ")
print(v3)