canvu-react 0.3.30 → 0.3.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +44 -77
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +44 -77
- package/dist/index.js.map +1 -1
- package/dist/native.cjs +44 -77
- package/dist/native.cjs.map +1 -1
- package/dist/native.js +44 -77
- package/dist/native.js.map +1 -1
- package/dist/react.cjs +46 -78
- package/dist/react.cjs.map +1 -1
- package/dist/react.js +46 -78
- package/dist/react.js.map +1 -1
- package/dist/realtime.cjs +2 -1
- package/dist/realtime.cjs.map +1 -1
- package/dist/realtime.js +2 -1
- package/dist/realtime.js.map +1 -1
- package/dist/tldraw.cjs +44 -77
- package/dist/tldraw.cjs.map +1 -1
- package/dist/tldraw.js +44 -77
- package/dist/tldraw.js.map +1 -1
- package/package.json +1 -1
package/dist/native.cjs
CHANGED
|
@@ -349,40 +349,21 @@ function resolveStrokeStyle(item) {
|
|
|
349
349
|
function strokeOpacityAttr(style) {
|
|
350
350
|
return style.strokeOpacity != null ? ` stroke-opacity="${style.strokeOpacity}"` : "";
|
|
351
351
|
}
|
|
352
|
-
function clampNumber(value, min, max) {
|
|
353
|
-
return Math.min(max, Math.max(min, value));
|
|
354
|
-
}
|
|
355
352
|
function svgNumber(value) {
|
|
356
353
|
if (!Number.isFinite(value)) return "0";
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
function architecturalCloudScallopCount(length, depth) {
|
|
360
|
-
if (length <= 1e-6) return 0;
|
|
361
|
-
return Math.max(1, Math.round(length / Math.max(depth * 2.05, 8)));
|
|
362
|
-
}
|
|
363
|
-
function appendHorizontalScallops(segments, startX, endX, y, controlY, count) {
|
|
364
|
-
if (count <= 0) return;
|
|
365
|
-
const step = (endX - startX) / count;
|
|
366
|
-
for (let index = 1; index <= count; index += 1) {
|
|
367
|
-
const x0 = startX + step * (index - 1);
|
|
368
|
-
const x1 = index === count ? endX : startX + step * index;
|
|
369
|
-
const cx = (x0 + x1) / 2;
|
|
370
|
-
segments.push(
|
|
371
|
-
`Q${svgNumber(cx)} ${svgNumber(controlY)} ${svgNumber(x1)} ${svgNumber(y)}`
|
|
372
|
-
);
|
|
373
|
-
}
|
|
354
|
+
const rounded = Math.round(value * 100) / 100;
|
|
355
|
+
return Number.isInteger(rounded) ? String(rounded) : String(rounded);
|
|
374
356
|
}
|
|
375
|
-
function
|
|
376
|
-
if (
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
}
|
|
357
|
+
function approximateEllipsePerimeter(rx, ry) {
|
|
358
|
+
if (rx <= 0 || ry <= 0) return 0;
|
|
359
|
+
return Math.PI * (3 * (rx + ry) - Math.sqrt((3 * rx + ry) * (rx + 3 * ry)));
|
|
360
|
+
}
|
|
361
|
+
function architecturalCloudScallopCount(rx, ry, amplitude) {
|
|
362
|
+
const perimeter = approximateEllipsePerimeter(rx, ry);
|
|
363
|
+
const targetScallopLength = Math.max(10, amplitude * 2);
|
|
364
|
+
let count = Math.max(12, Math.round(perimeter / targetScallopLength));
|
|
365
|
+
if (count % 2 === 1) count += 1;
|
|
366
|
+
return count;
|
|
386
367
|
}
|
|
387
368
|
function buildRectSvg(width, height, style = DEFAULT_STROKE_STYLE) {
|
|
388
369
|
return `<rect width="${width}" height="${height}" fill="none" stroke="${style.stroke}" stroke-width="${style.strokeWidth}" rx="4"${strokeOpacityAttr(style)} />`;
|
|
@@ -396,53 +377,39 @@ function buildArchitecturalCloudPathD(width, height, strokeWidth = DEFAULT_STROK
|
|
|
396
377
|
const w = Math.max(0, width);
|
|
397
378
|
const h = Math.max(0, height);
|
|
398
379
|
if (w <= 0 || h <= 0) return "";
|
|
399
|
-
const inset = Math.
|
|
400
|
-
const
|
|
401
|
-
const
|
|
402
|
-
|
|
403
|
-
const
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
const maxDepth = Math.max(0.5, Math.min(innerW, innerH) * 0.18);
|
|
408
|
-
const depth = clampNumber(Math.min(w, h) * 0.08, 2, Math.min(12, maxDepth));
|
|
409
|
-
const corner = Math.min(depth * 1.2, innerW / 2, innerH / 2);
|
|
410
|
-
const topStart = x0 + corner;
|
|
411
|
-
const topEnd = x1 - corner;
|
|
412
|
-
const rightStart = y0 + corner;
|
|
413
|
-
const rightEnd = y1 - corner;
|
|
414
|
-
const bottomStart = x1 - corner;
|
|
415
|
-
const bottomEnd = x0 + corner;
|
|
416
|
-
const leftStart = y1 - corner;
|
|
417
|
-
const leftEnd = y0 + corner;
|
|
418
|
-
const topCount = architecturalCloudScallopCount(topEnd - topStart, depth);
|
|
419
|
-
const rightCount = architecturalCloudScallopCount(rightEnd - rightStart, depth);
|
|
420
|
-
const bottomCount = architecturalCloudScallopCount(bottomStart - bottomEnd, depth);
|
|
421
|
-
const leftCount = architecturalCloudScallopCount(leftStart - leftEnd, depth);
|
|
422
|
-
const segments = [`M${svgNumber(topStart)} ${svgNumber(y0)}`];
|
|
423
|
-
appendHorizontalScallops(segments, topStart, topEnd, y0, y0 + depth, topCount);
|
|
424
|
-
segments.push(
|
|
425
|
-
`Q${svgNumber(x1)} ${svgNumber(y0)} ${svgNumber(x1)} ${svgNumber(rightStart)}`
|
|
426
|
-
);
|
|
427
|
-
appendVerticalScallops(segments, rightStart, rightEnd, x1, x1 - depth, rightCount);
|
|
428
|
-
segments.push(
|
|
429
|
-
`Q${svgNumber(x1)} ${svgNumber(y1)} ${svgNumber(bottomStart)} ${svgNumber(y1)}`
|
|
430
|
-
);
|
|
431
|
-
appendHorizontalScallops(
|
|
432
|
-
segments,
|
|
433
|
-
bottomStart,
|
|
434
|
-
bottomEnd,
|
|
435
|
-
y1,
|
|
436
|
-
y1 - depth,
|
|
437
|
-
bottomCount
|
|
438
|
-
);
|
|
439
|
-
segments.push(
|
|
440
|
-
`Q${svgNumber(x0)} ${svgNumber(y1)} ${svgNumber(x0)} ${svgNumber(leftStart)}`
|
|
441
|
-
);
|
|
442
|
-
appendVerticalScallops(segments, leftStart, leftEnd, x0, x0 + depth, leftCount);
|
|
443
|
-
segments.push(
|
|
444
|
-
`Q${svgNumber(x0)} ${svgNumber(y0)} ${svgNumber(topStart)} ${svgNumber(y0)} Z`
|
|
380
|
+
const inset = Math.max(0.5, strokeWidth / 2);
|
|
381
|
+
const outerRx = Math.max(0, w / 2 - inset);
|
|
382
|
+
const outerRy = Math.max(0, h / 2 - inset);
|
|
383
|
+
if (outerRx <= 0 || outerRy <= 0) return "";
|
|
384
|
+
const amplitude = Math.min(
|
|
385
|
+
outerRx * 0.45,
|
|
386
|
+
outerRy * 0.45,
|
|
387
|
+
Math.max(2, Math.min(8, Math.min(w, h) * 0.04))
|
|
445
388
|
);
|
|
389
|
+
const innerRx = Math.max(0, outerRx - amplitude);
|
|
390
|
+
const innerRy = Math.max(0, outerRy - amplitude);
|
|
391
|
+
const scallopCount = architecturalCloudScallopCount(innerRx, innerRy, amplitude);
|
|
392
|
+
const angleStep = Math.PI * 2 / scallopCount;
|
|
393
|
+
const cx = w / 2;
|
|
394
|
+
const cy = h / 2;
|
|
395
|
+
const startAngle = -Math.PI / 2;
|
|
396
|
+
const pointOnEllipse = (theta, radiusX, radiusY) => [
|
|
397
|
+
cx + Math.cos(theta) * radiusX,
|
|
398
|
+
cy + Math.sin(theta) * radiusY
|
|
399
|
+
];
|
|
400
|
+
const [startX, startY] = pointOnEllipse(startAngle, innerRx, innerRy);
|
|
401
|
+
const segments = [`M${svgNumber(startX)} ${svgNumber(startY)}`];
|
|
402
|
+
for (let index = 0; index < scallopCount; index += 1) {
|
|
403
|
+
const segmentStart = startAngle + index * angleStep;
|
|
404
|
+
const segmentMid = segmentStart + angleStep / 2;
|
|
405
|
+
const segmentEnd = segmentStart + angleStep;
|
|
406
|
+
const [controlX, controlY] = pointOnEllipse(segmentMid, outerRx, outerRy);
|
|
407
|
+
const [endX, endY] = pointOnEllipse(segmentEnd, innerRx, innerRy);
|
|
408
|
+
segments.push(
|
|
409
|
+
`Q${svgNumber(controlX)} ${svgNumber(controlY)} ${svgNumber(endX)} ${svgNumber(endY)}`
|
|
410
|
+
);
|
|
411
|
+
}
|
|
412
|
+
segments.push("Z");
|
|
446
413
|
return segments.join(" ");
|
|
447
414
|
}
|
|
448
415
|
function buildArchitecturalCloudSvg(width, height, style = DEFAULT_STROKE_STYLE) {
|