-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquad_functions.py
153 lines (109 loc) · 4.25 KB
/
quad_functions.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
class Point(object):
def __init__(self, input_x, input_y):
self.x = input_x
self.y = input_y
def __str__(self):
return "Point object with x = " + str(self.x) + " and y = " + str(self.y)
def __repr__(self):
return "(" + str(self.x) + "," + str(self.y) + ")"
def __eq__(self, other):
return self.x == other.x and self.y == other.y
class Line(object):
def __init__(self, p1, p2):
self.point1 = p1
self.point2 = p2
def __str__(self):
string = "Line object with Point (" + str(self.point1.x) + "," + str(self.point1.y) + ")"
string += "\nand Point (" + str(self.point2.x) + "," + str(self.point2.y) + ")"
return string
def __repr__(self):
string = "(" + str(self.point1.x) + "," +str(self.point1.y) + ")"
string += " and (" + str(self.point2.x) + "," + str(self.point2.y) + ")"
return string
def __eq__(self, other):
return self.point1 == other.point1 and self.point2 == other.point2
def cross_product(line1, line2):
vector1x = line1.point2.x - line1.point1.x
vector1y = line1.point2.y - line1.point1.y
vector2x = line2.point2.x - line2.point1.x
vector2y = line2.point2.y - line2.point1.y
return vector1x*vector2y - vector1y*vector2x
def point_on_left_of_line(point, line):
return cross_product(line, Line(line.point1, point)) > 0
def gift_wrap(point_list):
sorted_list = sorted(point_list, key = lambda point: point.x)
polygon = list()
initPoint = sorted_list[0]
while len(polygon) == 0 or polygon[len(polygon) - 1].point2 != initPoint:
'''
if len(polygon) == 0:
print sorted_list[0]
else:
print polygon[len(polygon) - 1].point2
'''
if len(sorted_list) == 1:
finalLine = Line(sorted_list[0], initPoint)
polygon.append(finalLine)
break
if len(polygon) == 0:
startingPoint = sorted_list[0]
else:
startingPoint = polygon[-1].point2
sorted_list.remove(startingPoint)
tentativeLine = Line(startingPoint, sorted_list[0])
num = 0
'''
if len(sorted_list) == 2:
tentativeLine = Line(startingPoint, sorted_list[1])
if point_on_left_of_line(initPoint, tentativeLine):
lastLine = Line(startingPoint, initPoint)
polygon.append(lastLine)
else:
penultLine = Line(startingPoint, sorted_list[1])
lastLine = Line(sorted_list[1], initPoint)
polygon.append(penultLine)
polygon.append(lastLine)
print "BRGH"
break
'''
for i in range(1, len(sorted_list)):
if sorted_list[i] == startingPoint:
continue
if point_on_left_of_line(sorted_list[i], tentativeLine):
tentativeLine = Line(startingPoint, sorted_list[i])
num = i
polygon.append(tentativeLine)
return polygon
def reorient_quad(line_list):
return_list = []
for line in reversed(line_list):
return_list.append(Line(line.point2, line.point1))
return_list.append(return_list.pop(0))
return return_list
def deconstruct_quad(line_list):
point_list = list()
for line in line_list:
point_list.append(line.point1)
return point_list
def aspect_ratio(point_list):
#refer to CRE method of element testing paper for formula
#equation 8 and 11 to be exact
e2 = 0.0
e2 += point_list[1].x + point_list[2].x
e2 -= point_list[0].x + point_list[3].x
e2 /= 4
f3 = 0.0
f3 += point_list[2].y + point_list[3].y
f3 -= point_list[0].y + point_list[1].y
f3 /= 4
return max(e2/f3, f3/e2)
def skew(point_list):
#refer to CRE method of element testing paper for formula
#equation 8 and 12
e3 = 0.0
e3 += point_list[2].x + point_list[3].x
e3 -= point_list[0].x + point_list[1].x
f3 = 0.0
f3 += point_list[2].y + point_list[3].y
f3 -= point_list[0].y + point_list[1].y
return e3/(f3*4)