This repository has been archived by the owner on Oct 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
bresenhamsalgo.py
61 lines (54 loc) · 1.49 KB
/
bresenhamsalgo.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
#filename : bresenhamsalgo.py
#author : PRAJWAL T R
#date last modified : Mon Jul 13 11:09:55 2020
#comments :
'''
given two points generates intermediate points with range +2. -2
'''
def getPoints(x0, y0,x1, y1):
point_list = []
def plotLineLow(x0,y0, x1,y1):
dx = x1 - x0
dy = y1 - y0
yi = 1
if dy < 0 :
yi = -1
dy = -dy
D = 2*dy - dx
y = y0
for x in range(x0, x1 +1):
point_list.append([x, y])
if D > 0:
y = y + yi
D = D - 2*dx
D = D + 2*dy
def plotLineHigh(x0,y0, x1,y1):
dx = x1 - x0
dy = y1 - y0
xi = 1
if dx < 0 :
xi = -1
dx = -dx
D = 2*dx - dy
x = x0
for y in range(y0, y1+1):
point_list.append([x, y])
if D > 0:
x = x + xi
D = D - 2*dy
D = D + 2*dx
if abs(y1 - y0) < abs(x1 - x0):
if x0 > x1:
plotLineLow(x1, y1, x0, y0)
point_list = point_list[::-1]
else:
plotLineLow(x0, y0, x1, y1)
else:
if y0 > y1 :
plotLineHigh(x1, y1, x0, y0)
point_list = point_list[::-1]
else :
plotLineHigh(x0, y0, x1, y1)
if len(point_list) % 2 == 0:
return [point_list[i] for i in range(0, len(point_list),2)] + [point_list[-1]]
return [point_list[i] for i in range(0, len(point_list), 2)]