diff --git a/src/element/bounds.ts b/src/element/bounds.ts index a95d63dc2..0150f4b3e 100644 --- a/src/element/bounds.ts +++ b/src/element/bounds.ts @@ -19,6 +19,8 @@ export function getElementAbsoluteY2(element: ExcalidrawElement) { } export function getDiamondPoints(element: ExcalidrawElement) { + // Here we add +1 to avoid these numbers to be 0 + // otherwise rough.js will throw an error complaining about it const topX = Math.floor(element.width / 2) + 1; const topY = 0; const rightX = element.width;