From b874e234e69b90911459294f61ada8a0e7320b1a Mon Sep 17 00:00:00 2001 From: Devine Lu Linvega Date: Wed, 1 Feb 2017 08:27:18 -0700 Subject: [PATCH] Improved Arc tool --- scripts/modules/vector.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/modules/vector.js b/scripts/modules/vector.js index 5dfd439..2756170 100644 --- a/scripts/modules/vector.js +++ b/scripts/modules/vector.js @@ -115,10 +115,10 @@ function Vector(rune) this.coordinates.push("M"+position.render()); } else if(keyboard.shift_held == true){ - this.coordinates.push("A1,1 0 0,1 "+position.render()); + this.coordinates.push("a"+offset.render()+" 0 0,1 "+offset.render()); } else if(keyboard.alt_held == true){ - this.coordinates.push("A1,1 0 0,0 "+position.render()); + this.coordinates.push("a"+offset.render()+" 0 0,0 "+offset.render()); } else{ this.coordinates.push("l"+offset.render());