This website works better with JavaScript.
Home
Explore
Help
Sign In
chemicalcrux
/
macrovision
Watch
1
Star
0
Fork
0
Code
Issues
5
Pull Requests
0
Releases
10
Wiki
Activity
Browse Source
Sort objects in order of decreasing size
tags/v0.1.0
Fen Dweller
5 years ago
parent
6ee6e6c13d
commit
a2968e1972
1 changed files
with
6 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
presets/objects.js
+ 6
- 0
presets/objects.js
View File
@@ -115,6 +115,12 @@ function makeObjects() {
}
)
});
results.sort((b1, b2) => {
e1 = b1.constructor();
e2 = b2.constructor();
return -math.subtract(e1.views[e1.defaultView].height, e2.views[e2.defaultView].height).value;
});
return results;
}
Write
Preview
Loading…
Cancel
Save