-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClass_Example7.py
More file actions
52 lines (46 loc) · 1.29 KB
/
Class_Example7.py
File metadata and controls
52 lines (46 loc) · 1.29 KB
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
"""
Define a point class with two co-ordinates and create two instance variables that represent the points and calculate the distance between two points
"""
class Point:
"""
Describes about the point
"""
def __init__(self, intX, intY):
"""
Initializes the variables
:param intX: initializes to x
:param intY: initializes to y
"""
self.x = intX
self.y = intY
def getX(self):
"""
returns the X varaible
:return: returns x
"""
return self.x
def getY(self):
"""
returns the Y Variable
:return: return y
"""
return self.y
def distanceFromOrigin(self):
return (self.x**2+self.y**2)*(1/2)
def distance(Point_First,Point_Second):
"""
Calculating the distance between two points
:param Point_First: Instance of First Point
:param Point_Second: Instance of Second Point
:return: integer that calculates the distance between two points
"""
x1 = Point_First.getX()
x2 = Point_Second.getX()
y1 = Point_First.getY()
y2 = Point_Second.getY()
distance_between_points = ((x2-x1)**2 + (y2-y1)**2)**(1/2)
return distance_between_points
p=Point(4,3)
q=Point(0,0)
total_distance = distance(p,q)
print(total_distance)