mirror of
https://github.com/xibyte/jsketcher
synced 2026-02-14 11:30:19 +01:00
filter auxiliary constraints
This commit is contained in:
parent
b237610249
commit
31b696c3f4
1 changed files with 3 additions and 1 deletions
|
|
@ -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;
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue