From 782552055a734d2e8976fac7fb5c3c9295638d3c Mon Sep 17 00:00:00 2001 From: mattmcw Date: Thu, 2 Dec 2021 16:11:50 -0500 Subject: [PATCH] Lines aren't being drawn. Try without removing the line width --- stipple_gen.pde | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stipple_gen.pde b/stipple_gen.pde index 40307b9..b8cb400 100644 --- a/stipple_gen.pde +++ b/stipple_gen.pde @@ -1132,7 +1132,7 @@ public float[] line_circle_p(float x0, float y0, float x1, float y1, float cx, f **/ ArrayList fillCircle (float x, float y, float d, float angle, float line) { ArrayList output = new ArrayList(); - float r = (d / 2.0) - line; + float r = (d / 2.0); float perpAngle = (angle + 90.0) % 360.0; float perpRadian = radians(perpAngle); float radian = radians(angle);