From 39568e1864c6311756148f91c55335397e2ec0fc Mon Sep 17 00:00:00 2001 From: Kenneth van Ewijk Date: Mon, 20 Oct 2014 16:52:57 +0200 Subject: [PATCH] Reduced console output when drawing graphs --- WindDirection.java | 1 - 1 file changed, 1 deletion(-) diff --git a/WindDirection.java b/WindDirection.java index 2519259..df67917 100644 --- a/WindDirection.java +++ b/WindDirection.java @@ -44,7 +44,6 @@ public class WindDirection extends Grootheid{ { x = (int)(64 + (radius*Math.cos(i * Math.PI / 180))); y = (int)(16 + radius*Math.sin(i * Math.PI / 180)); - System.out.println("x: " + x + " Y: " + y); if(i == degree){ x2 = x; y2 = y;