From 31b696c3f485f9837ca83fb5974357be76402ebd Mon Sep 17 00:00:00 2001 From: Val Erastov Date: Mon, 9 Feb 2015 22:13:42 -0800 Subject: [PATCH] filter auxiliary constraints --- web/sketcher.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/sketcher.html b/web/sketcher.html index be40735c..4a744cb0 100644 --- a/web/sketcher.html +++ b/web/sketcher.html @@ -227,7 +227,9 @@ var theItems = []; for (var i = 0; i < pm.system.length; ++i) { var constr = pm.system[i]; - theItems.push({name : constr.NAME, constr : constr}); + if (constr.aux !== true) { + theItems.push({name : constr.NAME, constr : constr}); + } } return theItems; },