Tldraw/packages/editor/src/lib/primitives/geometry/geometry-constants.ts

7 wiersze
178 B
TypeScript

const SPACING = 20
const MIN_COUNT = 8
export function getVerticesCountForLength(length: number, spacing = SPACING) {
return Math.max(MIN_COUNT, Math.ceil(length / spacing))
}