@canvas-commons/2d 0.2.0

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.
Files changed (183) hide show
  1. package/LICENSE +22 -0
  2. package/editor/index.css +40 -0
  3. package/editor/index.js +525 -0
  4. package/editor/index.js.map +1 -0
  5. package/lib/index-OvpZ-GsA.d.ts +5673 -0
  6. package/lib/index-OvpZ-GsA.d.ts.map +1 -0
  7. package/lib/index.d.ts +2 -0
  8. package/lib/index.js +10326 -0
  9. package/lib/index.js.map +1 -0
  10. package/lib/jsx-dev-runtime.d.ts +2 -0
  11. package/lib/jsx-dev-runtime.js +2 -0
  12. package/lib/jsx-runtime.d.ts +2 -0
  13. package/lib/jsx-runtime.js +28 -0
  14. package/lib/jsx-runtime.js.map +1 -0
  15. package/package.json +79 -0
  16. package/src/editor/NodeInspectorConfig.tsx +76 -0
  17. package/src/editor/PreviewOverlayConfig.tsx +65 -0
  18. package/src/editor/Provider.tsx +109 -0
  19. package/src/editor/SceneGraphTabConfig.tsx +87 -0
  20. package/src/editor/icons/CircleIcon.tsx +7 -0
  21. package/src/editor/icons/CodeIcon.tsx +8 -0
  22. package/src/editor/icons/CurveIcon.tsx +7 -0
  23. package/src/editor/icons/GridIcon.tsx +7 -0
  24. package/src/editor/icons/IconMap.ts +35 -0
  25. package/src/editor/icons/ImgIcon.tsx +8 -0
  26. package/src/editor/icons/LayoutIcon.tsx +9 -0
  27. package/src/editor/icons/LineIcon.tsx +7 -0
  28. package/src/editor/icons/NodeIcon.tsx +7 -0
  29. package/src/editor/icons/RayIcon.tsx +7 -0
  30. package/src/editor/icons/RectIcon.tsx +7 -0
  31. package/src/editor/icons/ShapeIcon.tsx +7 -0
  32. package/src/editor/icons/TxtIcon.tsx +8 -0
  33. package/src/editor/icons/VideoIcon.tsx +7 -0
  34. package/src/editor/icons/View2DIcon.tsx +10 -0
  35. package/src/editor/index.css +0 -0
  36. package/src/editor/index.ts +19 -0
  37. package/src/editor/shortcuts.ts +27 -0
  38. package/src/editor/tree/DetachedRoot.tsx +27 -0
  39. package/src/editor/tree/NodeElement.tsx +72 -0
  40. package/src/editor/tree/TreeElement.tsx +70 -0
  41. package/src/editor/tree/TreeRoot.tsx +10 -0
  42. package/src/editor/tree/ViewRoot.tsx +20 -0
  43. package/src/editor/tree/index.module.scss +45 -0
  44. package/src/editor/tree/index.ts +4 -0
  45. package/src/editor/tree/navigation.ts +145 -0
  46. package/src/editor/tsconfig.build.json +5 -0
  47. package/src/editor/tsconfig.json +12 -0
  48. package/src/editor/tsdoc.json +4 -0
  49. package/src/editor/utils/SignalSet.ts +37 -0
  50. package/src/editor/utils/index.ts +1 -0
  51. package/src/editor/vite-env.d.ts +1 -0
  52. package/src/lib/code/CodeCursor.ts +468 -0
  53. package/src/lib/code/CodeDiffer.ts +77 -0
  54. package/src/lib/code/CodeFragment.ts +96 -0
  55. package/src/lib/code/CodeHighlighter.ts +73 -0
  56. package/src/lib/code/CodeMetrics.ts +47 -0
  57. package/src/lib/code/CodeRange.test.ts +113 -0
  58. package/src/lib/code/CodeRange.ts +222 -0
  59. package/src/lib/code/CodeScope.ts +100 -0
  60. package/src/lib/code/CodeSelection.ts +28 -0
  61. package/src/lib/code/CodeSignal.ts +348 -0
  62. package/src/lib/code/CodeTokenizer.ts +54 -0
  63. package/src/lib/code/DefaultHighlightStyle.ts +98 -0
  64. package/src/lib/code/LezerHighlighter.ts +113 -0
  65. package/src/lib/code/diff.test.ts +311 -0
  66. package/src/lib/code/diff.ts +319 -0
  67. package/src/lib/code/extractRange.ts +125 -0
  68. package/src/lib/code/index.ts +13 -0
  69. package/src/lib/components/Bezier.ts +103 -0
  70. package/src/lib/components/Camera.ts +401 -0
  71. package/src/lib/components/Circle.ts +310 -0
  72. package/src/lib/components/Code.ts +532 -0
  73. package/src/lib/components/CubicBezier.ts +115 -0
  74. package/src/lib/components/Curve.ts +460 -0
  75. package/src/lib/components/Grid.ts +134 -0
  76. package/src/lib/components/Icon.ts +153 -0
  77. package/src/lib/components/Img.ts +328 -0
  78. package/src/lib/components/Knot.ts +156 -0
  79. package/src/lib/components/Latex.ts +537 -0
  80. package/src/lib/components/Layout.ts +1101 -0
  81. package/src/lib/components/Line.ts +394 -0
  82. package/src/lib/components/Node.ts +1941 -0
  83. package/src/lib/components/Path.ts +132 -0
  84. package/src/lib/components/Polygon.ts +266 -0
  85. package/src/lib/components/QuadBezier.ts +103 -0
  86. package/src/lib/components/Ray.ts +126 -0
  87. package/src/lib/components/Rect.ts +219 -0
  88. package/src/lib/components/SVG.ts +853 -0
  89. package/src/lib/components/Shape.ts +322 -0
  90. package/src/lib/components/Spline.ts +318 -0
  91. package/src/lib/components/Txt.test.tsx +81 -0
  92. package/src/lib/components/Txt.ts +204 -0
  93. package/src/lib/components/TxtLeaf.ts +210 -0
  94. package/src/lib/components/Video.ts +368 -0
  95. package/src/lib/components/View2D.ts +85 -0
  96. package/src/lib/components/__logs__/image-without-source.ts +18 -0
  97. package/src/lib/components/__logs__/line-without-points.ts +31 -0
  98. package/src/lib/components/__logs__/reactive-playback-rate.ts +22 -0
  99. package/src/lib/components/__logs__/spline-with-insufficient-knots.ts +25 -0
  100. package/src/lib/components/__tests__/Camera.test.tsx +73 -0
  101. package/src/lib/components/__tests__/children.test.tsx +142 -0
  102. package/src/lib/components/__tests__/clone.test.tsx +126 -0
  103. package/src/lib/components/__tests__/fontInheritance.test.tsx +102 -0
  104. package/src/lib/components/__tests__/generatorTest.ts +27 -0
  105. package/src/lib/components/__tests__/mockScene2D.ts +50 -0
  106. package/src/lib/components/__tests__/query.test.tsx +122 -0
  107. package/src/lib/components/__tests__/state.test.tsx +60 -0
  108. package/src/lib/components/index.ts +26 -0
  109. package/src/lib/components/types.ts +35 -0
  110. package/src/lib/curves/ArcSegment.ts +169 -0
  111. package/src/lib/curves/CircleSegment.ts +99 -0
  112. package/src/lib/curves/CubicBezierSegment.ts +80 -0
  113. package/src/lib/curves/CurveDrawingInfo.ts +11 -0
  114. package/src/lib/curves/CurvePoint.ts +15 -0
  115. package/src/lib/curves/CurveProfile.ts +28 -0
  116. package/src/lib/curves/KnotInfo.ts +10 -0
  117. package/src/lib/curves/LineSegment.ts +75 -0
  118. package/src/lib/curves/Polynomial.ts +355 -0
  119. package/src/lib/curves/Polynomial2D.ts +62 -0
  120. package/src/lib/curves/PolynomialSegment.ts +151 -0
  121. package/src/lib/curves/QuadBezierSegment.ts +66 -0
  122. package/src/lib/curves/Segment.ts +31 -0
  123. package/src/lib/curves/UniformPolynomialCurveSampler.ts +93 -0
  124. package/src/lib/curves/createCurveProfileLerp.ts +471 -0
  125. package/src/lib/curves/getBezierSplineProfile.ts +227 -0
  126. package/src/lib/curves/getCircleProfile.ts +86 -0
  127. package/src/lib/curves/getPathProfile.ts +177 -0
  128. package/src/lib/curves/getPointAtDistance.ts +21 -0
  129. package/src/lib/curves/getPolylineProfile.test.ts +21 -0
  130. package/src/lib/curves/getPolylineProfile.ts +88 -0
  131. package/src/lib/curves/getRectProfile.ts +138 -0
  132. package/src/lib/curves/index.ts +16 -0
  133. package/src/lib/decorators/canvasStyleSignal.ts +15 -0
  134. package/src/lib/decorators/colorSignal.ts +9 -0
  135. package/src/lib/decorators/compound.ts +85 -0
  136. package/src/lib/decorators/computed.ts +18 -0
  137. package/src/lib/decorators/defaultStyle.ts +15 -0
  138. package/src/lib/decorators/filtersSignal.ts +133 -0
  139. package/src/lib/decorators/index.ts +10 -0
  140. package/src/lib/decorators/initializers.ts +32 -0
  141. package/src/lib/decorators/nodeName.ts +13 -0
  142. package/src/lib/decorators/signal.test.ts +89 -0
  143. package/src/lib/decorators/signal.ts +348 -0
  144. package/src/lib/decorators/spacingSignal.ts +15 -0
  145. package/src/lib/decorators/transformSignals.test.ts +858 -0
  146. package/src/lib/decorators/transformSignals.ts +1633 -0
  147. package/src/lib/decorators/vector2Signal.ts +35 -0
  148. package/src/lib/globals.d.ts +2 -0
  149. package/src/lib/index.ts +9 -0
  150. package/src/lib/jsx-dev-runtime.ts +2 -0
  151. package/src/lib/jsx-runtime.ts +45 -0
  152. package/src/lib/morphers/PathMorpher.ts +8 -0
  153. package/src/lib/morphers/defaultMorpher.ts +43 -0
  154. package/src/lib/morphers/index.ts +4 -0
  155. package/src/lib/morphers/manimMorpher.ts +658 -0
  156. package/src/lib/parse-svg-path.d.ts +14 -0
  157. package/src/lib/partials/Filter.ts +185 -0
  158. package/src/lib/partials/Gradient.ts +103 -0
  159. package/src/lib/partials/Pattern.ts +35 -0
  160. package/src/lib/partials/RoughConfig.ts +180 -0
  161. package/src/lib/partials/ShaderConfig.ts +122 -0
  162. package/src/lib/partials/index.ts +5 -0
  163. package/src/lib/partials/types.ts +58 -0
  164. package/src/lib/scenes/Scene2D.ts +167 -0
  165. package/src/lib/scenes/index.ts +3 -0
  166. package/src/lib/scenes/makeScene2D.ts +19 -0
  167. package/src/lib/scenes/useScene2D.ts +6 -0
  168. package/src/lib/tsconfig.build.json +5 -0
  169. package/src/lib/tsconfig.json +11 -0
  170. package/src/lib/tsdoc.json +4 -0
  171. package/src/lib/utils/CanvasUtils.ts +304 -0
  172. package/src/lib/utils/PathDataBuilder.ts +320 -0
  173. package/src/lib/utils/diff.test.ts +453 -0
  174. package/src/lib/utils/diff.ts +148 -0
  175. package/src/lib/utils/index.ts +5 -0
  176. package/src/lib/utils/is.ts +11 -0
  177. package/src/lib/utils/makeSignalExtensions.ts +29 -0
  178. package/src/lib/utils/rough.ts +513 -0
  179. package/src/lib/utils/withDefaults.tsx +26 -0
  180. package/src/tsconfig.base.json +18 -0
  181. package/src/tsconfig.build.json +8 -0
  182. package/src/tsconfig.json +5 -0
  183. package/tsconfig.project.json +7 -0
@@ -0,0 +1,355 @@
1
+ import {clamp} from '@canvas-commons/core';
2
+
3
+ /**
4
+ * A polynomial in the form ax^3 + bx^2 + cx + d up to a cubic polynomial.
5
+ *
6
+ * Source code liberally taken from:
7
+ * https://github.com/FreyaHolmer/Mathfs/blob/master/Runtime/Curves/Polynomial.cs
8
+ */
9
+ export class Polynomial {
10
+ public readonly c1: number;
11
+ public readonly c2: number;
12
+ public readonly c3: number;
13
+
14
+ /**
15
+ * Constructs a constant polynomial
16
+ *
17
+ * @param c0 - The constant coefficient
18
+ */
19
+ public static constant(c0: number): Polynomial {
20
+ return new Polynomial(c0);
21
+ }
22
+
23
+ /**
24
+ * Constructs a linear polynomial
25
+ *
26
+ * @param c0 - The constant coefficient
27
+ * @param c1 - The linear coefficient
28
+ */
29
+ public static linear(c0: number, c1: number): Polynomial {
30
+ return new Polynomial(c0, c1);
31
+ }
32
+
33
+ /**
34
+ * Constructs a quadratic polynomial
35
+ *
36
+ * @param c0 - The constant coefficient
37
+ * @param c1 - The linear coefficient
38
+ * @param c2 - The quadratic coefficient
39
+ */
40
+ public static quadratic(c0: number, c1: number, c2: number): Polynomial {
41
+ return new Polynomial(c0, c1, c2);
42
+ }
43
+
44
+ /**
45
+ * Constructs a cubic polynomial
46
+ *
47
+ * @param c0 - The constant coefficient
48
+ * @param c1 - The linear coefficient
49
+ * @param c2 - The quadratic coefficient
50
+ * @param c3 - The cubic coefficient
51
+ */
52
+ public static cubic(
53
+ c0: number,
54
+ c1: number,
55
+ c2: number,
56
+ c3: number,
57
+ ): Polynomial {
58
+ return new Polynomial(c0, c1, c2, c3);
59
+ }
60
+
61
+ /**
62
+ * The degree of the polynomial
63
+ */
64
+ public get degree(): number {
65
+ if (this.c3 !== 0) {
66
+ return 3;
67
+ } else if (this.c2 !== 0) {
68
+ return 2;
69
+ } else if (this.c1 !== 0) {
70
+ return 1;
71
+ }
72
+ return 0;
73
+ }
74
+
75
+ /**
76
+ * @param c0 - The constant coefficient
77
+ */
78
+ public constructor(c0: number);
79
+ /**
80
+ * @param c0 - The constant coefficient
81
+ * @param c1 - The linear coefficient
82
+ */
83
+ public constructor(c0: number, c1: number);
84
+ /**
85
+ * @param c0 - The constant coefficient
86
+ * @param c1 - The linear coefficient
87
+ * @param c2 - The quadratic coefficient
88
+ */
89
+ public constructor(c0: number, c1: number, c2: number);
90
+ /**
91
+ * @param c0 - The constant coefficient
92
+ * @param c1 - The linear coefficient
93
+ * @param c2 - The quadratic coefficient
94
+ * @param c3 - The cubic coefficient
95
+ */
96
+ public constructor(c0: number, c1: number, c2: number, c3: number);
97
+ public constructor(
98
+ public readonly c0: number,
99
+ c1?: number,
100
+ c2?: number,
101
+ c3?: number,
102
+ ) {
103
+ this.c1 = c1 ?? 0;
104
+ this.c2 = c2 ?? 0;
105
+ this.c3 = c3 ?? 0;
106
+ }
107
+
108
+ /**
109
+ * Return the nth derivative of the polynomial.
110
+ *
111
+ * @param n - The number of times to differentiate the polynomial.
112
+ */
113
+ public differentiate(n = 1): Polynomial {
114
+ switch (n) {
115
+ case 0:
116
+ return this;
117
+ case 1:
118
+ return new Polynomial(this.c1, 2 * this.c2, 3 * this.c3, 0);
119
+ case 2:
120
+ return new Polynomial(2 * this.c2, 6 * this.c3, 0, 0);
121
+ case 3:
122
+ return new Polynomial(6 * this.c3, 0, 0, 0);
123
+ default:
124
+ throw new Error('Unsupported derivative');
125
+ }
126
+ }
127
+
128
+ /**
129
+ * Evaluate the polynomial at the given value t.
130
+ *
131
+ * @param t - The value to sample at
132
+ */
133
+ public eval(t: number): number;
134
+ /**
135
+ * Evaluate the nth derivative of the polynomial at the given value t.
136
+ *
137
+ * @param t - The value to sample at
138
+ * @param derivative - The derivative of the polynomial to sample from
139
+ */
140
+ public eval(t: number, derivative: number): number;
141
+ public eval(t: number, derivative = 0): number {
142
+ if (derivative !== 0) {
143
+ return this.differentiate(derivative).eval(t);
144
+ }
145
+ return this.c3 * (t * t * t) + this.c2 * (t * t) + this.c1 * t + this.c0;
146
+ }
147
+
148
+ /**
149
+ * Split the polynomial into two polynomials of the same overall shape.
150
+ *
151
+ * @param u - The point at which to split the polynomial.
152
+ */
153
+ public split(u: number): [Polynomial, Polynomial] {
154
+ const d = 1 - u;
155
+
156
+ const pre = new Polynomial(
157
+ this.c0,
158
+ this.c1 * u,
159
+ this.c2 * u * u,
160
+ this.c3 * u * u * u,
161
+ );
162
+ const post = new Polynomial(
163
+ this.eval(0),
164
+ d * this.differentiate(1).eval(u),
165
+ ((d * d) / 2) * this.differentiate(2).eval(u),
166
+ ((d * d * d) / 6) * this.differentiate(3).eval(u),
167
+ );
168
+
169
+ return [pre, post];
170
+ }
171
+
172
+ /**
173
+ * Calculate the roots (values where this polynomial = 0).
174
+ *
175
+ * @remarks
176
+ * Depending on the degree of the polynomial, returns between 0 and 3 results.
177
+ */
178
+ public roots(): number[] {
179
+ switch (this.degree) {
180
+ case 3:
181
+ return this.solveCubicRoots();
182
+ case 2:
183
+ return this.solveQuadraticRoots();
184
+ case 1:
185
+ return this.solveLinearRoot();
186
+ case 0:
187
+ return [];
188
+ default:
189
+ throw new Error(`Unsupported polynomial degree: ${this.degree}`);
190
+ }
191
+ }
192
+
193
+ /**
194
+ * Calculate the local extrema of the polynomial.
195
+ */
196
+ public localExtrema(): number[] {
197
+ return this.differentiate().roots();
198
+ }
199
+
200
+ /**
201
+ * Calculate the local extrema of the polynomial in the unit interval.
202
+ */
203
+ public localExtrema01(): number[] {
204
+ const all = this.localExtrema();
205
+ const valids = [];
206
+ for (let i = 0; i < all.length; i++) {
207
+ const t = all[i];
208
+ if (t >= 0 && t <= 1) {
209
+ valids.push(all[i]);
210
+ }
211
+ }
212
+ return valids;
213
+ }
214
+
215
+ /**
216
+ * Return the output value range within the unit interval.
217
+ */
218
+ public outputRange01(): number[] {
219
+ let range = [this.eval(0), this.eval(1)];
220
+
221
+ // Expands the minimum or maximum value of the range to contain the given
222
+ // value.
223
+ const encapsulate = (value: number) => {
224
+ if (range[1] > range[0]) {
225
+ range = [Math.min(range[0], value), Math.max(range[1], value)];
226
+ } else {
227
+ range = [Math.min(range[1], value), Math.max(range[0], value)];
228
+ }
229
+ };
230
+
231
+ this.localExtrema01().forEach(t => encapsulate(this.eval(t)));
232
+
233
+ return range;
234
+ }
235
+
236
+ private solveCubicRoots() {
237
+ const a = this.c0;
238
+ const b = this.c1;
239
+ const c = this.c2;
240
+ const d = this.c3;
241
+
242
+ // First, depress the cubic to make it easier to solve
243
+ const aa = a * a;
244
+ const ac = a * c;
245
+ const bb = b * b;
246
+ const p = (3 * ac - bb) / (3 * aa);
247
+ const q = (2 * bb * b - 9 * ac * b + 27 * aa * d) / (27 * aa * a);
248
+
249
+ const dpr = this.solveDepressedCubicRoots(p, q);
250
+
251
+ // We now have the roots of the depressed cubic, now convert back to the
252
+ // normal cubic
253
+ const undepressRoot = (r: number) => r - b / (3 * a);
254
+ switch (dpr.length) {
255
+ case 1:
256
+ return [undepressRoot(dpr[0])];
257
+ case 2:
258
+ return [undepressRoot(dpr[0]), undepressRoot(dpr[1])];
259
+ case 3:
260
+ return [
261
+ undepressRoot(dpr[0]),
262
+ undepressRoot(dpr[1]),
263
+ undepressRoot(dpr[2]),
264
+ ];
265
+ default:
266
+ return [];
267
+ }
268
+ }
269
+
270
+ private solveDepressedCubicRoots(p: number, q: number): number[] {
271
+ // t³+pt+q = 0
272
+
273
+ // Triple root - one solution. solve x³+q = 0 => x = cr(-q)
274
+ if (this.almostZero(p)) {
275
+ return [Math.cbrt(-q)];
276
+ }
277
+
278
+ const TAU = Math.PI * 2;
279
+ const discriminant = 4 * p * p * p + 27 * q * q;
280
+ if (discriminant < 0.00001) {
281
+ // Two or three roots guaranteed, use trig solution
282
+ const pre = 2 * Math.sqrt(-p / 3);
283
+ const acosInner = ((3 * q) / (2 * p)) * Math.sqrt(-3 / p);
284
+
285
+ const getRoot = (k: number) =>
286
+ pre *
287
+ Math.cos((1 / 3) * Math.acos(clamp(-1, 1, acosInner)) - (TAU / 3) * k);
288
+
289
+ // If acos hits 0 or TAU/2, the offsets will have the same value,
290
+ // which means we have a double root plus one regular root on our hands
291
+ if (acosInner >= 0.9999) {
292
+ // two roots - one single and one double root
293
+ return [getRoot(0), getRoot(2)];
294
+ }
295
+
296
+ if (acosInner <= -0.9999) {
297
+ // two roots - one single and one double root
298
+ return [getRoot(1), getRoot(2)];
299
+ }
300
+
301
+ return [getRoot(0), getRoot(1), getRoot(2)];
302
+ }
303
+
304
+ if (discriminant > 0 && p < 0) {
305
+ // one root
306
+ const coshInner =
307
+ (1 / 3) *
308
+ Math.acosh(((-3 * Math.abs(q)) / (2 * p)) * Math.sqrt(-3 / p));
309
+ const r = -2 * Math.sign(q) * Math.sqrt(-p / 3) * Math.cosh(coshInner);
310
+ return [r];
311
+ }
312
+
313
+ if (p > 0) {
314
+ // one root
315
+ const sinhInner =
316
+ (1 / 3) * Math.asinh(((3 * q) / (2 * p)) * Math.sqrt(3 / p));
317
+ const r = -2 * Math.sqrt(p / 3) * Math.sinh(sinhInner);
318
+ return [r];
319
+ }
320
+
321
+ // no roots
322
+ return [];
323
+ }
324
+
325
+ private solveQuadraticRoots() {
326
+ const a = this.c2;
327
+ const b = this.c1;
328
+ const c = this.c0;
329
+ const rootContent = b * b - 4 * a * c;
330
+
331
+ if (this.almostZero(rootContent)) {
332
+ // two equivalent solutions at one point
333
+ return [-b / (2 * a)];
334
+ }
335
+
336
+ if (rootContent >= 0) {
337
+ const root = Math.sqrt(rootContent);
338
+ // crosses at two points
339
+ const r0 = (-b - root) / (2 * a);
340
+ const r1 = (-b + root) / (2 * a);
341
+
342
+ return [Math.min(r0, r1), Math.max(r0, r1)];
343
+ }
344
+
345
+ return [];
346
+ }
347
+
348
+ private solveLinearRoot() {
349
+ return [-this.c0 / this.c1];
350
+ }
351
+
352
+ private almostZero(value: number) {
353
+ return Math.abs(0 - value) <= Number.EPSILON;
354
+ }
355
+ }
@@ -0,0 +1,62 @@
1
+ import {BBox, Vector2} from '@canvas-commons/core';
2
+
3
+ import {Polynomial} from './Polynomial';
4
+
5
+ export class Polynomial2D {
6
+ public readonly x: Polynomial;
7
+ public readonly y: Polynomial;
8
+
9
+ public constructor(c0: Vector2, c1: Vector2, c2: Vector2, c3: Vector2);
10
+ public constructor(c0: Vector2, c1: Vector2, c2: Vector2);
11
+ public constructor(x: Polynomial, y: Polynomial);
12
+ public constructor(
13
+ public readonly c0: Vector2 | Polynomial,
14
+ public readonly c1: Vector2 | Polynomial,
15
+ public readonly c2?: Vector2,
16
+ public readonly c3?: Vector2,
17
+ ) {
18
+ if (c0 instanceof Polynomial) {
19
+ this.x = c0;
20
+ this.y = c1 as Polynomial;
21
+ } else if (c3 !== undefined) {
22
+ this.x = new Polynomial(c0.x, (c1 as Vector2).x, c2!.x, c3.x);
23
+ this.y = new Polynomial(c0.y, (c1 as Vector2).y, c2!.y, c3.y);
24
+ } else {
25
+ this.x = new Polynomial(c0.x, (c1 as Vector2).x, c2!.x);
26
+ this.y = new Polynomial(c0.y, (c1 as Vector2).y, c2!.y);
27
+ }
28
+ }
29
+
30
+ public eval(t: number, derivative = 0): Vector2 {
31
+ return new Vector2(
32
+ this.x.differentiate(derivative).eval(t),
33
+ this.y.differentiate(derivative).eval(t),
34
+ );
35
+ }
36
+
37
+ public split(u: number): [Polynomial2D, Polynomial2D] {
38
+ const [xPre, xPost] = this.x.split(u);
39
+ const [yPre, yPost] = this.y.split(u);
40
+ return [new Polynomial2D(xPre, yPre), new Polynomial2D(xPost, yPost)];
41
+ }
42
+
43
+ public differentiate(n = 1): Polynomial2D {
44
+ return new Polynomial2D(this.x.differentiate(n), this.y.differentiate(n));
45
+ }
46
+
47
+ public evalDerivative(t: number): Vector2 {
48
+ return this.differentiate().eval(t);
49
+ }
50
+
51
+ /**
52
+ * Calculate the tight axis-aligned bounds of the curve in the unit interval.
53
+ */
54
+ public getBounds(): BBox {
55
+ const rangeX = this.x.outputRange01();
56
+ const rangeY = this.y.outputRange01();
57
+ return BBox.fromPoints(
58
+ new Vector2(Math.min(...rangeX), Math.max(...rangeY)),
59
+ new Vector2(Math.max(...rangeX), Math.min(...rangeY)),
60
+ );
61
+ }
62
+ }
@@ -0,0 +1,151 @@
1
+ import {BBox, Vector2} from '@canvas-commons/core';
2
+ import {moveTo} from '../utils';
3
+ import {CurvePoint} from './CurvePoint';
4
+ import {Polynomial2D} from './Polynomial2D';
5
+ import {Segment} from './Segment';
6
+ import {UniformPolynomialCurveSampler} from './UniformPolynomialCurveSampler';
7
+
8
+ export abstract class PolynomialSegment extends Segment {
9
+ protected readonly pointSampler: UniformPolynomialCurveSampler;
10
+
11
+ public get arcLength(): number {
12
+ return this.length;
13
+ }
14
+
15
+ public abstract override get points(): Vector2[];
16
+
17
+ protected constructor(
18
+ protected readonly curve: Polynomial2D,
19
+ protected readonly length: number,
20
+ ) {
21
+ super();
22
+ this.pointSampler = new UniformPolynomialCurveSampler(this);
23
+ }
24
+
25
+ public getBBox(): BBox {
26
+ return this.curve.getBounds();
27
+ }
28
+
29
+ /**
30
+ * Evaluate the polynomial at the given t value.
31
+ *
32
+ * @param t - The t value at which to evaluate the curve.
33
+ */
34
+ public eval(t: number): CurvePoint {
35
+ const tangent = this.tangent(t);
36
+
37
+ return {
38
+ position: this.curve.eval(t),
39
+ tangent,
40
+ normal: tangent.perpendicular,
41
+ };
42
+ }
43
+
44
+ /**
45
+ * Split the curve into two separate polynomials at the given t value. The two
46
+ * resulting curves form the same overall shape as the original curve.
47
+ *
48
+ * @param t - The t value at which to split the curve.
49
+ */
50
+ public abstract split(t: number): [PolynomialSegment, PolynomialSegment];
51
+
52
+ public getPoint(distance: number): CurvePoint {
53
+ const closestPoint = this.pointSampler.pointAtDistance(
54
+ this.arcLength * distance,
55
+ );
56
+ return {
57
+ position: closestPoint.position,
58
+ tangent: closestPoint.tangent,
59
+ normal: closestPoint.tangent.perpendicular,
60
+ };
61
+ }
62
+
63
+ public transformPoints(matrix: DOMMatrix): Vector2[] {
64
+ return this.points.map(point => point.transformAsPoint(matrix));
65
+ }
66
+
67
+ /**
68
+ * Return the tangent of the point that sits at the provided t value on the
69
+ * curve.
70
+ *
71
+ * @param t - The t value at which to evaluate the curve.
72
+ */
73
+ public tangent(t: number): Vector2 {
74
+ return this.curve.evalDerivative(t).normalized;
75
+ }
76
+
77
+ public draw(
78
+ context: CanvasRenderingContext2D | Path2D,
79
+ start = 0,
80
+ end = 1,
81
+ move = true,
82
+ ): [CurvePoint, CurvePoint] {
83
+ let curve: PolynomialSegment | null = null;
84
+ let startT = start;
85
+ let endT = end;
86
+ let points = this.points;
87
+
88
+ if (start !== 0 || end !== 1) {
89
+ const startDistance = this.length * start;
90
+ const endDistance = this.length * end;
91
+
92
+ startT = this.pointSampler.distanceToT(startDistance);
93
+ endT = this.pointSampler.distanceToT(endDistance);
94
+ const relativeEndT = (endT - startT) / (1 - startT);
95
+
96
+ const [, startSegment] = this.split(startT);
97
+ [curve] = startSegment.split(relativeEndT);
98
+ points = curve.points;
99
+ }
100
+
101
+ if (move) {
102
+ moveTo(context, points[0]);
103
+ }
104
+ (curve ?? this).doDraw(context);
105
+
106
+ const startTangent = this.tangent(startT);
107
+ const endTangent = this.tangent(endT);
108
+
109
+ return [
110
+ {
111
+ position: points[0],
112
+ tangent: startTangent,
113
+ normal: startTangent.perpendicular,
114
+ },
115
+ {
116
+ position: points.at(-1)!,
117
+ tangent: endTangent,
118
+ normal: endTangent.perpendicular,
119
+ },
120
+ ];
121
+ }
122
+
123
+ public toSVGCommands(start = 0, end = 1, move = true): string {
124
+ let curve: PolynomialSegment | null = null;
125
+ let points = this.points;
126
+
127
+ if (start !== 0 || end !== 1) {
128
+ const startDistance = this.length * start;
129
+ const endDistance = this.length * end;
130
+
131
+ const startT = this.pointSampler.distanceToT(startDistance);
132
+ const endT = this.pointSampler.distanceToT(endDistance);
133
+ const relativeEndT = (endT - startT) / (1 - startT);
134
+
135
+ const [, startSegment] = this.split(startT);
136
+ [curve] = startSegment.split(relativeEndT);
137
+ points = curve.points;
138
+ }
139
+
140
+ const commands: string[] = [];
141
+ if (move) {
142
+ commands.push(`M ${points[0].x} ${points[0].y}`);
143
+ }
144
+ commands.push((curve ?? this).doSVGCommands());
145
+
146
+ return commands.join(' ');
147
+ }
148
+
149
+ protected abstract doDraw(context: CanvasRenderingContext2D | Path2D): void;
150
+ protected abstract doSVGCommands(): string;
151
+ }
@@ -0,0 +1,66 @@
1
+ import {Vector2, lazy} from '@canvas-commons/core';
2
+ import {quadraticCurveTo} from '../utils';
3
+ import {Polynomial2D} from './Polynomial2D';
4
+ import {PolynomialSegment} from './PolynomialSegment';
5
+
6
+ /**
7
+ * A spline segment representing a quadratic Bézier curve.
8
+ */
9
+ export class QuadBezierSegment extends PolynomialSegment {
10
+ @lazy(() => document.createElementNS('http://www.w3.org/2000/svg', 'path'))
11
+ private static el: SVGPathElement;
12
+
13
+ public get points(): Vector2[] {
14
+ return [this.p0, this.p1, this.p2];
15
+ }
16
+
17
+ public constructor(
18
+ public readonly p0: Vector2,
19
+ public readonly p1: Vector2,
20
+ public readonly p2: Vector2,
21
+ ) {
22
+ super(
23
+ new Polynomial2D(
24
+ p0,
25
+ // 2*(-p0+p1)
26
+ p0.flipped.add(p1).scale(2),
27
+ // p0-2*p1+p2
28
+ p0.sub(p1.scale(2)).add(p2),
29
+ ),
30
+ QuadBezierSegment.getLength(p0, p1, p2),
31
+ );
32
+ }
33
+
34
+ public split(t: number): [PolynomialSegment, PolynomialSegment] {
35
+ const a = new Vector2(
36
+ this.p0.x + (this.p1.x - this.p0.x) * t,
37
+ this.p0.y + (this.p1.y - this.p0.y) * t,
38
+ );
39
+ const b = new Vector2(
40
+ this.p1.x + (this.p2.x - this.p1.x) * t,
41
+ this.p1.y + (this.p2.y - this.p1.y) * t,
42
+ );
43
+ const p = new Vector2(a.x + (b.x - a.x) * t, a.y + (b.y - a.y) * t);
44
+
45
+ const left = new QuadBezierSegment(this.p0, a, p);
46
+ const right = new QuadBezierSegment(p, b, this.p2);
47
+
48
+ return [left, right];
49
+ }
50
+
51
+ protected static getLength(p0: Vector2, p1: Vector2, p2: Vector2): number {
52
+ QuadBezierSegment.el.setAttribute(
53
+ 'd',
54
+ `M ${p0.x} ${p0.y} Q ${p1.x} ${p1.y} ${p2.x} ${p2.y}`,
55
+ );
56
+ return QuadBezierSegment.el.getTotalLength();
57
+ }
58
+
59
+ protected override doDraw(context: CanvasRenderingContext2D | Path2D) {
60
+ quadraticCurveTo(context, this.p1, this.p2);
61
+ }
62
+
63
+ protected override doSVGCommands(): string {
64
+ return `Q ${this.p1.x} ${this.p1.y} ${this.p2.x} ${this.p2.y}`;
65
+ }
66
+ }
@@ -0,0 +1,31 @@
1
+ import {Vector2} from '@canvas-commons/core';
2
+ import {CurvePoint} from './CurvePoint';
3
+
4
+ export abstract class Segment {
5
+ public abstract readonly points: Vector2[];
6
+
7
+ public abstract draw(
8
+ context: CanvasRenderingContext2D | Path2D,
9
+ start: number,
10
+ end: number,
11
+ move: boolean,
12
+ ): [CurvePoint, CurvePoint];
13
+
14
+ public abstract getPoint(distance: number): CurvePoint;
15
+
16
+ public abstract get arcLength(): number;
17
+
18
+ /**
19
+ * Convert this segment to SVG path commands.
20
+ *
21
+ * @param start - Start distance along the segment (0 to arcLength)
22
+ * @param end - End distance along the segment (0 to arcLength)
23
+ * @param move - Whether to include a moveTo command at the start
24
+ * @returns SVG path data string for this segment
25
+ */
26
+ public abstract toSVGCommands(
27
+ start: number,
28
+ end: number,
29
+ move: boolean,
30
+ ): string;
31
+ }