cd514d72d6
Introduces constant width freedraw mode, keeping the original variable mode as default. --------- Signed-off-by: Mark Tolmacs <mark@lazycat.hu> Co-authored-by: dwelle <5153846+dwelle@users.noreply.github.com>
21 lines
444 B
TypeScript
21 lines
444 B
TypeScript
export {
|
|
isSomeElementSelected,
|
|
getElementsWithinSelection,
|
|
getSelectedElements,
|
|
getTargetElements,
|
|
} from "@excalidraw/element";
|
|
export { calculateScrollCenter } from "./scroll";
|
|
export {
|
|
hasBackground,
|
|
hasStrokeWidth,
|
|
hasStrokeStyle,
|
|
hasFreedrawMode,
|
|
canHaveArrowheads,
|
|
canChangeRoundness,
|
|
} from "@excalidraw/element";
|
|
export {
|
|
getNormalizedZoom,
|
|
getNormalizedGridSize,
|
|
getNormalizedGridStep,
|
|
} from "./normalize";
|