<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
</body>
</html>
console.clear();
const border = 30;
const center = (left, right, diff, width) => {
const halfDiff = Math.floor(diff / 2);
if (left - halfDiff < 0) {
return [0, right + (diff - left)];
} else if (right + halfDiff > width) {
return [left - diff + (width - right), width];
} else {
return [left - halfDiff, right + (diff - halfDiff)];
}
};
const square = (box, width) => {
const diffX = box.tr[0] - box.bl[0], diffY = box.tr[1] - box.bl[1];
if (diffX > diffY) {
const c = center(box.bl[1], box.tr[1], diffX - diffY, width);
return {bl: [box.bl[0], c[0]], tr:[box.tr[0], c[1]]}
} else {
const c = center(box.bl[0], box.tr[0], diffY - diffX, width);
return {bl: [c[0], box.bl[1]], tr:[c[1], box.tr[1]]};
}
};
const pad = (box, border, width) => {
const cx = center(box.bl[0], box.tr[0], border * 2, width),
cy = center(box.bl[1], box.tr[1], border * 2, width);
return {bl: [cx[0], cy[0]], tr: [Math.min(width, cx[1]), Math.min(width, cy[1])]};
};
const translate = box => ({coord: box.bl, width: box.tr[0] - box.bl[0]});
const print = box => console.log(`(${box.coord[0]}, ${box.coord[1]}), ${box.width}`);
const bounding = (width, coordinates) => {
const x = coordinates.map(c => c[0]),
y = coordinates.map(c => c[1]),
x1 = Math.min.apply(null, x), x2 = Math.max.apply(null, x),
y1 = Math.min.apply(null, y), y2 = Math.max.apply(null, y);
return translate(pad(square({bl: [x1, y1], tr: [x2, y2] }, width), border, width));
};
print(bounding(2000, [[1000, 1500], [1200, 1500], [1400,1600], [1600,1800]]));
print(bounding(2000, [[600, 600], [700, 1200]]));
print(bounding(2000, [[300, 300], [1300, 300]]));
print(bounding(2000, [[825, 820], [840, 830], [830, 865], [835, 900]]));
print(bounding(5079, [[5079, 2000], [5079, 3000]]));
print(bounding(5079, [[10, 2000], [10, 3000]]));
print(bounding(5079, [[2000, 10], [3000, 10]]));
print(bounding(5079, [[2000, 5079], [3000, 5079]]));
print(bounding(5079, [[0, 0], [600, 600]]));
print(bounding(5079, [[5079, 5079], [4479, 4479]]));
print(bounding(5079, [[0, 5079], [600, 4479]]));
print(bounding(5079, [[5079, 0], [4479, 600]]));
print(bounding(5079, [[1000, 0], [1000, 5079]]));
print(bounding(5079, [[0, 1000], [5079, 1000]]));
print(bounding(5079, [[0, 0], [5079, 5079]]));
Output
300px
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |