Graph = function (cell_invalidation, size, mathbounds, ...expressions) {
const [width, height] = size;
const [left, right, bottom, top] = mathbounds;
const view = html`<div style="width: ${width}px; height: ${height}px;">`;
const calculator = Desmos.GraphingCalculator(view);
cell_invalidation.then(() => calculator.destroy());
calculator.setExpressions(expressions);
calculator.setMathBounds({ left, right, bottom, top });
view.value = calculator;
return view;
}