hexaflexagon_diagram: reuse get_triangle_center_in_plan()
authorAntonio Ospite <ao2@ao2.it>
Wed, 27 Jun 2018 13:05:06 +0000 (15:05 +0200)
committerAntonio Ospite <ao2@ao2.it>
Wed, 27 Jun 2018 13:18:43 +0000 (15:18 +0200)
Reuse get_triangle_center_in_plan() also in draw_plan_template() instead
of open coding the calculations.

src/flexagon/hexaflexagon_diagram.py

index b7e50fb..09e8fc9 100755 (executable)
@@ -173,13 +173,11 @@ class HexaflexagonDiagram(object):
             self.backend.draw_centered_text(tx, ty, corner_text, text_theta, color)
 
     def draw_plan_template(self):
-        x0, y0 = self.plan_origin
         for hexagon in self.hexaflexagon.hexagons:
             for triangle in hexagon.triangles:
-                i, j = self.hexaflexagon.get_triangle_plan_position(triangle)
-                x, y = triangle.calc_plan_coordinates(self.triangle_radius, i, j)
+                x, y = self.get_triangle_center_in_plan(triangle)
                 theta = triangle.get_angle_in_plan()
-                self.draw_triangle_template(triangle, x0 + x, y0 + y, theta)
+                self.draw_triangle_template(triangle, x, y, theta)
 
     def draw_template(self):
         for hexagon in self.hexaflexagon.hexagons: