From 846f427732b2feafd9f3fd5fdb4f48bc11e05ed2 Mon Sep 17 00:00:00 2001 From: Faustino Kialungila Date: Tue, 7 Jan 2020 18:59:10 +0100 Subject: [PATCH] adding comments about diamond dimensions (#241) --- src/element/bounds.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/element/bounds.ts b/src/element/bounds.ts index 9d83b8ce..6a7cfcf1 100644 --- a/src/element/bounds.ts +++ b/src/element/bounds.ts @@ -15,6 +15,8 @@ export function getElementAbsoluteCoords(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;