From c107ef76179876916d6e5db802776afa73f56b77 Mon Sep 17 00:00:00 2001 From: Timm Weber Date: Sat, 8 Aug 2015 03:18:53 +0200 Subject: viren jetzt neu in gefixt --- test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test.py') diff --git a/test.py b/test.py index 32d75de..99b00f8 100644 --- a/test.py +++ b/test.py @@ -69,7 +69,7 @@ class MeinSubskribierer: print("debug line") def generateVirus(spikes, spike_length, radius, global_coords): - step = 2*math.pi / spikes*2 + step = (2*math.pi) / (spikes*2) points = [] for i in range(spikes*2): @@ -94,11 +94,11 @@ def drawCell(cell): color = (0,255,0) color2 = (100,255,0) radius = int(cell.size/2) - polygon = generateVirus(100, 5, radius, (cx, cy)) + polygon = generateVirus(int(radius*0.6), 5, radius, (cx, cy)) + gfxdraw.filled_polygon(screen, polygon, color2) gfxdraw.aapolygon(screen, polygon, color) gfxdraw.polygon(screen, polygon, color) - #gfxdraw.filled_polygon(screen, polygon, (0,0,0)) else: color=(int(cell.color[0]*255), int(cell.color[1]*255), int(cell.color[2]*255)) -- cgit v1.2.3