merging with upstream

This commit is contained in:
Senad Uka
2017-12-27 16:24:50 +01:00
parent db7453f438
commit f4c19dec04
7 changed files with 103 additions and 56 deletions

View File

@@ -68,7 +68,7 @@ class ProjectPresenter(object):
# origin = self.find_origin(building)
for point in building:
point.x = point.x * spacing_x
point.y = abs((point.y * spacing_y - max_y))
point.y = abs((point.y * spacing_y) - max_y)
presentable_building.append(point.__dict__)
return result