Current section

Files

Jump to
plinth src dom_rect_ffi.mjs
Raw

src/dom_rect_ffi.mjs

export function x(domRect) {
return domRect.x;
}
export function setX(domRect, x) {
domRect.x = x;
}
export function y(domRect) {
return domRect.y;
}
export function setY(domRect, y) {
domRect.y = y;
}
export function width(domRect) {
return domRect.width;
}
export function setWidth(domRect, width) {
domRect.width = width;
}
export function height(domRect) {
return domRect.height;
}
export function setHeight(domRect, height) {
domRect.height = height;
}