Lines Matching refs:zoom
245 const zoom = getZoomFactor(container);
246 const layout = computeSizeFn(viewer, zoom);
264 const zoom = Number.parseFloat(container.dataset.zoom ?? "1");
266 if (!Number.isFinite(zoom) || zoom <= 0) {
270 return zoom;
273 function computeBpmnDiagramSize(viewer, zoom) { argument
286 scaledWidth: Math.max(width * zoom, 1),
287 scaledHeight: Math.max(height * zoom, 1),
300 function computeDmnDiagramSize(viewer, zoom) { argument
318 scaledWidth: Math.max(width * zoom, 1),
319 scaledHeight: Math.max(height * zoom, 1),