mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
* Draw horizontal/vertical lines/arrows when shift pressed * Refactor resizing with delta * Resize arrows/lines perfectly when shift pressed
19 lines
619 B
TypeScript
19 lines
619 B
TypeScript
export { newElement, newTextElement, duplicateElement } from "./newElement";
|
|
export {
|
|
getElementAbsoluteCoords,
|
|
getDiamondPoints,
|
|
getArrowPoints,
|
|
getLinePoints
|
|
} from "./bounds";
|
|
|
|
export { handlerRectangles } from "./handlerRectangles";
|
|
export { hitTest } from "./collision";
|
|
export { resizeTest, getCursorForResizingElement } from "./resizeTest";
|
|
export { isTextElement } from "./typeChecks";
|
|
export { textWysiwyg } from "./textWysiwyg";
|
|
export { redrawTextBoundingBox } from "./textElement";
|
|
export {
|
|
getPerfectElementSize,
|
|
isInvisiblySmallElement,
|
|
resizePerfectLineForNWHandler
|
|
} from "./sizeHelpers";
|