mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
feat: add line shape (#371)
* feat: add line shape * fix: align line tool * fix: hitbox bug sw to ne * fix: add stroke width n sloppiness for line * fix: center line inside a panel box * fix: use color as a unique key
This commit is contained in:
parent
42968ef44d
commit
8db8827c6f
8 changed files with 61 additions and 5 deletions
|
@ -4,7 +4,8 @@ import { ExcalidrawElement } from "./types";
|
|||
import {
|
||||
getArrowPoints,
|
||||
getDiamondPoints,
|
||||
getElementAbsoluteCoords
|
||||
getElementAbsoluteCoords,
|
||||
getLinePoints
|
||||
} from "./bounds";
|
||||
|
||||
export function hitTest(
|
||||
|
@ -153,6 +154,13 @@ export function hitTest(
|
|||
// /
|
||||
distanceBetweenPointAndSegment(x, y, x4, y4, x2, y2) < lineThreshold
|
||||
);
|
||||
} else if (element.type === "line") {
|
||||
const [x1, y1, x2, y2] = getLinePoints(element);
|
||||
// The computation is done at the origin, we need to add a translation
|
||||
x -= element.x;
|
||||
y -= element.y;
|
||||
|
||||
return distanceBetweenPointAndSegment(x, y, x1, y1, x2, y2) < lineThreshold;
|
||||
} else if (element.type === "text") {
|
||||
const [x1, y1, x2, y2] = getElementAbsoluteCoords(element);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue