-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPairPoint.py
54 lines (42 loc) · 1.08 KB
/
PairPoint.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
#!/usr/bin/env python
'''
Author: Sergio Garcia Prado
www.garciparedes.me
'''
from Point import Point
class PairPoint():
'''
Clase PairPoint.
Sirve para modelar un par de puntos en
el sistema.
Attributes:
pointA: Punto A del par.
pointB: Punto B del par.
'''
def __init__(self, pointA, pointB):
'''
Constructor de la clase.
'''
self.pointA = pointA
self.pointB = pointB
def set(self, pointA, pointB):
'''
Procedimiento que modifica
el valor de los atributos.
'''
self.pointA = pointA
self.pointB = pointB
def distance(self):
'''
Funcion que devuelve la distancia del
punto A al punto B del par.
'''
return self.pointA.distance(self.pointB)
def __str__(self):
'''
Funcion que devuelve el PairPoint
como cadena de caracteres.
'''
return ("Punto A: %s \n"
"Punto B: %s \n"
"Distancia: %s") % (self.pointA, self.pointB, self.distance())