mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-14 20:33:30 +01:00
Disable sorting
This commit is contained in:
parent
43986faa22
commit
5c68a2013c
1 changed files with 5 additions and 5 deletions
|
|
@ -358,11 +358,11 @@ TCAD.TWO.ParametricManager.prototype.prepareForSubSystem = function(locked, subS
|
|||
return Math.abs(p1.get() - p2.get()) <= 0.000001
|
||||
}
|
||||
var system = this.__getSolveData(subSystem, []);
|
||||
system.sort(function(a, b){
|
||||
a = a[0] === 'equal' ? 1 : 2;
|
||||
b = b[0] === 'equal' ? 1 : 2;
|
||||
return a - b;
|
||||
});
|
||||
// system.sort(function(a, b){
|
||||
// a = a[0] === 'equal' ? 1 : 2;
|
||||
// b = b[0] === 'equal' ? 1 : 2;
|
||||
// return a - b;
|
||||
// });
|
||||
var tuples = [];
|
||||
for (i = 0; i < system.length; ++i) {
|
||||
var c = system[i];
|
||||
|
|
|
|||
Loading…
Reference in a new issue