From 425a464965d385070af06b714f95929e1069aae5 Mon Sep 17 00:00:00 2001 From: bryanspacex Date: Thu, 6 Jul 2023 23:34:32 +0530 Subject: [PATCH] fixed a bug in brush.js --- brush.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/brush.js b/brush.js index 1797a4d..c21fcb5 100644 --- a/brush.js +++ b/brush.js @@ -1,7 +1,8 @@ var Brush = (function () { 'use strict'; - var N_PREVIOUS_SPEEDS = 15; //how many previous speeds we store + const N_PREVIOUS_SPEEDS = 15; //how many previous speeds we store + var SPLATS_PER_SEGMENT = 8;