From ed6c707cba294f4a4d9646efc4c4b2427f56377e Mon Sep 17 00:00:00 2001 From: Benjamin Wheeler Date: Thu, 30 May 2019 11:50:54 -0400 Subject: [PATCH] Revert "Tweak scalingVector to make dots appear to be more circular" --- src/PenSkin.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/PenSkin.js b/src/PenSkin.js index 6833d02..1e500ba 100644 --- a/src/PenSkin.js +++ b/src/PenSkin.js @@ -379,10 +379,8 @@ class PenSkin extends Skin { translationVector[1] = avgY + (alias / 4); const scalingVector = __modelScalingVector; - // Dots tend to be ovals that are longer on the y-axis, so we use a smaller alias - // for the y value than for the x value to make dots more circular. - scalingVector[0] = diameter + (alias / 2); - scalingVector[1] = length + diameter - (alias / 6); + scalingVector[0] = diameter + alias; + scalingVector[1] = length + diameter - (alias / 2); const radius = diameter / 2; const yScalar = (0.50001 - (radius / (length + diameter)));