From aed4f626ce4394f7548e285bfa6a95278cc63245 Mon Sep 17 00:00:00 2001 From: cantbesure1 Date: Tue, 7 Nov 2017 03:25:14 -0800 Subject: [PATCH] single character bugfix --- sources/scripts/dotgrid.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/scripts/dotgrid.js b/sources/scripts/dotgrid.js index 22c96ac..6dc75ae 100644 --- a/sources/scripts/dotgrid.js +++ b/sources/scripts/dotgrid.js @@ -262,7 +262,7 @@ function Dotgrid(width,height,grid_x,grid_y,block_x,block_y,thickness = 3,lineca to = new Pos(to.x * -1, to.y).sub(this.offset) from = new Pos(from.x * -1,from.y).sub(this.offset) - end = end ? new Pos(end.y * -1,end.y).sub(this.offset) : null; + end = end ? new Pos(end.x * -1,end.y).sub(this.offset) : null; this.segments.push(new Path_Arc(from,to,orientation,end));