UNPKG

@tldraw/editor

Version:

A tiny little drawing app (editor).

10 lines (9 loc) 254 B
const SPACING = 20; const MIN_COUNT = 8; function getVerticesCountForLength(length, spacing = SPACING) { return Math.max(MIN_COUNT, Math.ceil(length / spacing)); } export { getVerticesCountForLength }; //# sourceMappingURL=geometry-constants.mjs.map