verts = self.get_regular_polygon(cx, cy, sides, r, theta)
self.draw_polygon_by_verts(verts, fill_color, stroke_color)
- def draw_star(self, cx, cy, verts, stroke_color=[0, 0, 0]):
+ def draw_star_by_verts(self, cx, cy, verts, stroke_color=[0, 0, 0]):
cr = self.cr
for v in verts:
cr.set_source_rgba(r, g, b, a)
cr.stroke()
+ def draw_star(self, cx, cy, sides, r, theta=0.0, stroke_color=[0, 0, 0]):
+ apothem = r * cos(pi / sides)
+ apothem_angle = theta + pi / sides
+
+ verts = self.get_regular_polygon(cx, cy, sides, apothem, apothem_angle)
+ self.draw_star_by_verts(cx, cy, verts, stroke_color)
+
def draw_circle(self, cx, cy, size=10.0, fill_color=[0, 0, 0, 0.5],
stroke_color=None):
cr = self.cr
theta, None, color)
if model.show_stars:
- apothem = model.element_radius * cos(pi / model.element_sides)
- apothem_angle = theta + pi / model.element_sides
-
- sverts = self.get_regular_polygon(x, y, model.element_sides, apothem,
- apothem_angle)
- self.draw_star(x, y, sverts, color)
+ self.draw_star(x, y, model.element_sides, model.element_radius,
+ theta, color)
if __name__ == '__main__':