This commit is contained in:
wryk 2019-03-10 06:27:52 +01:00
parent 3aea52350c
commit 05bb7d30ca

View file

@ -9,7 +9,7 @@ export function makeRectangle (x, y, width, height) {
export function crop ({ x, y, width: w, height: h }) { export function crop ({ x, y, width: w, height: h }) {
if (w < h) { if (w < h) {
return makeRectangle((h - w) / 2, y, h, h) return makeRectangle(x, (h - w) / 2, w, w)
} else if (w > h) { } else if (w > h) {
return makeRectangle((w - h) / 2, y, h, h) return makeRectangle((w - h) / 2, y, h, h)
} else { } else {