Lines aren't being drawn. Try without removing the line width

This commit is contained in:
mattmcw 2021-12-02 16:11:50 -05:00
parent 41927aec1f
commit 782552055a
1 changed files with 1 additions and 1 deletions

View File

@ -1132,7 +1132,7 @@ public float[] line_circle_p(float x0, float y0, float x1, float y1, float cx, f
**/
ArrayList<float[]> fillCircle (float x, float y, float d, float angle, float line) {
ArrayList<float[]> output = new ArrayList<float[]>();
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);