formatting
This commit is contained in:
parent
037d8fe171
commit
e29f86312b
Binary file not shown.
@ -26,10 +26,6 @@ class Vertex:
|
|||||||
self.ang = angle
|
self.ang = angle
|
||||||
self.dirang = dirang
|
self.dirang = dirang
|
||||||
self.coords = coords
|
self.coords = coords
|
||||||
def __str__(self):
|
|
||||||
return "%2d: len:%7.3f acadang:%9.4f acadcoords:(%.3f,%.3f)" % \
|
|
||||||
(self.point, self.len,
|
|
||||||
(90 - self.dirang), self.coords.acadx, self.coords.acady)
|
|
||||||
|
|
||||||
A = Dec('6.094')
|
A = Dec('6.094')
|
||||||
B = Dec('-2.923')
|
B = Dec('-2.923')
|
||||||
@ -105,8 +101,13 @@ if __name__ == '__main__':
|
|||||||
print("angle sum %.4f, theoretical angle sum %d" % \
|
print("angle sum %.4f, theoretical angle sum %d" % \
|
||||||
(angle_sum, theoretical_angle_sum))
|
(angle_sum, theoretical_angle_sum))
|
||||||
|
|
||||||
for v in vertices:
|
for i, v in enumerate(vertices):
|
||||||
print(v)
|
nxt = vertices[0 if i == len(vertices) - 1 else i+1]
|
||||||
|
|
||||||
|
pts = "%d-%d" % (v.point, nxt.point)
|
||||||
|
draw = "@%.3f<%.4f" % (v.len, 90 - v.dirang)
|
||||||
|
print("%5s: %19s acadcoords:(%.3f,%.3f)" % \
|
||||||
|
(pts, draw, v.coords.acadx, v.coords.acady))
|
||||||
|
|
||||||
print("""
|
print("""
|
||||||
Kelio A-03 plotis = 17.401 + A = %.3f""" % KA03_plotis + """
|
Kelio A-03 plotis = 17.401 + A = %.3f""" % KA03_plotis + """
|
||||||
|
Loading…
Reference in New Issue
Block a user