11 lines
246 B
JavaScript
11 lines
246 B
JavaScript
window.getElementSize = (element) => {
|
|
return {
|
|
width: element.clientWidth,
|
|
height: element.clientHeight,
|
|
};
|
|
}
|
|
|
|
window.setCanvasSize = (canvas, width, height) => {
|
|
canvas.width = width;
|
|
canvas.height = height;
|
|
} |