ktongue's picture
download
raw
497 Bytes
import {sqrt} from "../math.js";
export default {
draw(context, size) {
const r = sqrt(size / 5) / 2;
context.moveTo(-3 * r, -r);
context.lineTo(-r, -r);
context.lineTo(-r, -3 * r);
context.lineTo(r, -3 * r);
context.lineTo(r, -r);
context.lineTo(3 * r, -r);
context.lineTo(3 * r, r);
context.lineTo(r, r);
context.lineTo(r, 3 * r);
context.lineTo(-r, 3 * r);
context.lineTo(-r, r);
context.lineTo(-3 * r, r);
context.closePath();
}
};

Xet Storage Details

Size:
497 Bytes
·
Xet hash:
1090aec79f38a17668fe3820c0f95e1febf11c98d8e310c91acc3ad7e1cab52d

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.