UNPKG

@tldraw/editor

Version:

A tiny little drawing app (editor).

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