@revideo/2d 0.4.0 → 0.4.1-cat.995

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 (123) hide show
  1. package/editor/editor/tsconfig.build.tsbuildinfo +1 -1
  2. package/editor/index.js +380 -151
  3. package/editor/index.js.map +1 -1
  4. package/lib/code/CodeCursor.d.ts +74 -74
  5. package/lib/code/CodeDiffer.d.ts +21 -16
  6. package/lib/code/CodeDiffer.js +39 -41
  7. package/lib/code/CodeFragment.d.ts +16 -8
  8. package/lib/code/CodeFragment.js +36 -36
  9. package/lib/code/CodeHighlighter.d.ts +59 -59
  10. package/lib/code/CodeHighlighter.js +1 -1
  11. package/lib/code/CodeMetrics.d.ts +12 -8
  12. package/lib/code/CodeMetrics.js +26 -24
  13. package/lib/code/CodeRange.d.ts +21 -5
  14. package/lib/code/CodeRange.js +131 -124
  15. package/lib/code/CodeScope.d.ts +18 -8
  16. package/lib/code/CodeSelection.d.ts +9 -4
  17. package/lib/code/CodeSelection.js +8 -8
  18. package/lib/code/CodeSignal.d.ts +74 -47
  19. package/lib/code/CodeTokenizer.d.ts +1 -1
  20. package/lib/code/CodeTokenizer.js +41 -41
  21. package/lib/code/DefaultHighlightStyle.d.ts +2 -2
  22. package/lib/code/DefaultHighlightStyle.js +96 -96
  23. package/lib/code/LezerHighlighter.d.ts +21 -19
  24. package/lib/code/diff.d.ts +12 -9
  25. package/lib/code/diff.js +218 -205
  26. package/lib/code/extractRange.d.ts +7 -4
  27. package/lib/code/extractRange.js +79 -71
  28. package/lib/code/index.d.ts +1 -1
  29. package/lib/code/index.js +1 -1
  30. package/lib/components/Audio.d.ts +11 -11
  31. package/lib/components/Bezier.d.ts +18 -18
  32. package/lib/components/Circle.d.ts +95 -90
  33. package/lib/components/Code.d.ts +244 -211
  34. package/lib/components/CodeBlock.d.ts +1 -1
  35. package/lib/components/CubicBezier.d.ts +36 -36
  36. package/lib/components/Curve.d.ts +208 -198
  37. package/lib/components/Grid.d.ts +47 -42
  38. package/lib/components/Icon.d.ts +55 -50
  39. package/lib/components/Img.d.ts +86 -79
  40. package/lib/components/Knot.d.ts +97 -78
  41. package/lib/components/Latex.d.ts +12 -12
  42. package/lib/components/Layout.d.ts +455 -413
  43. package/lib/components/Line.d.ts +61 -49
  44. package/lib/components/Node.d.ts +1 -1
  45. package/lib/components/Path.d.ts +1 -1
  46. package/lib/components/Polygon.d.ts +60 -55
  47. package/lib/components/QuadBezier.d.ts +29 -29
  48. package/lib/components/Ray.d.ts +28 -28
  49. package/lib/components/Rect.d.ts +115 -108
  50. package/lib/components/SVG.d.ts +1 -1
  51. package/lib/components/Shape.d.ts +1 -1
  52. package/lib/components/Spline.d.ts +46 -40
  53. package/lib/components/Txt.d.ts +55 -44
  54. package/lib/components/TxtLeaf.d.ts +20 -16
  55. package/lib/components/View2D.d.ts +22 -22
  56. package/lib/components/index.d.ts +1 -1
  57. package/lib/components/types.d.ts +22 -9
  58. package/lib/curves/ArcSegment.d.ts +36 -24
  59. package/lib/curves/CircleSegment.d.ts +26 -16
  60. package/lib/curves/CubicBezierSegment.d.ts +18 -13
  61. package/lib/curves/CurveDrawingInfo.d.ts +9 -9
  62. package/lib/curves/CurvePoint.d.ts +13 -13
  63. package/lib/curves/CurveProfile.d.ts +5 -5
  64. package/lib/curves/CurveProfile.js +1 -1
  65. package/lib/curves/KnotInfo.d.ts +8 -8
  66. package/lib/curves/LineSegment.d.ts +19 -14
  67. package/lib/curves/Polynomial.d.ts +110 -110
  68. package/lib/curves/Polynomial2D.d.ts +20 -20
  69. package/lib/curves/PolynomialSegment.d.ts +42 -37
  70. package/lib/curves/QuadBezierSegment.d.ts +12 -12
  71. package/lib/curves/Segment.d.ts +12 -7
  72. package/lib/curves/UniformPolynomialCurveSampler.d.ts +34 -34
  73. package/lib/curves/createCurveProfileLerp.d.ts +17 -6
  74. package/lib/curves/getBezierSplineProfile.d.ts +8 -4
  75. package/lib/curves/getCircleProfile.d.ts +10 -4
  76. package/lib/curves/getPathProfile.d.ts +2 -2
  77. package/lib/curves/getPointAtDistance.d.ts +7 -4
  78. package/lib/curves/getPolylineProfile.d.ts +8 -4
  79. package/lib/curves/getRectProfile.d.ts +9 -4
  80. package/lib/curves/index.d.ts +1 -1
  81. package/lib/curves/index.js +1 -1
  82. package/lib/decorators/canvasStyleSignal.d.ts +3 -3
  83. package/lib/decorators/colorSignal.d.ts +1 -1
  84. package/lib/decorators/compound.d.ts +4 -2
  85. package/lib/decorators/computed.d.ts +1 -1
  86. package/lib/decorators/defaultStyle.d.ts +5 -2
  87. package/lib/decorators/filtersSignal.d.ts +28 -8
  88. package/lib/decorators/index.d.ts +1 -1
  89. package/lib/decorators/index.js +1 -1
  90. package/lib/decorators/initializers.d.ts +5 -2
  91. package/lib/decorators/initializers.js +18 -19
  92. package/lib/decorators/nodeName.d.ts +1 -1
  93. package/lib/decorators/nodeName.js +4 -4
  94. package/lib/decorators/signal.d.ts +40 -20
  95. package/lib/decorators/spacingSignal.d.ts +1 -1
  96. package/lib/decorators/vector2Signal.d.ts +13 -7
  97. package/lib/index.d.ts +1 -1
  98. package/lib/index.js +1 -1
  99. package/lib/jsx-dev-runtime.d.ts +3 -3
  100. package/lib/jsx-dev-runtime.js +3 -3
  101. package/lib/jsx-runtime.d.ts +19 -9
  102. package/lib/jsx-runtime.js +18 -18
  103. package/lib/partials/Filter.d.ts +24 -16
  104. package/lib/partials/Gradient.d.ts +30 -24
  105. package/lib/partials/Pattern.d.ts +14 -9
  106. package/lib/partials/ShaderConfig.d.ts +81 -74
  107. package/lib/partials/index.d.ts +1 -1
  108. package/lib/partials/index.js +1 -1
  109. package/lib/partials/types.d.ts +19 -6
  110. package/lib/scenes/Scene2D.d.ts +42 -23
  111. package/lib/scenes/index.d.ts +1 -1
  112. package/lib/scenes/index.js +1 -1
  113. package/lib/scenes/makeScene2D.d.ts +7 -5
  114. package/lib/scenes/useScene2D.d.ts +2 -2
  115. package/lib/tsconfig.build.tsbuildinfo +1 -1
  116. package/lib/utils/diff.d.ts +25 -18
  117. package/lib/utils/diff.js +84 -87
  118. package/lib/utils/index.d.ts +1 -1
  119. package/lib/utils/index.js +1 -1
  120. package/lib/utils/is.d.ts +4 -2
  121. package/lib/utils/is.js +2 -2
  122. package/lib/utils/makeSignalExtensions.d.ts +11 -4
  123. package/package.json +5 -5
@@ -5,114 +5,114 @@
5
5
  * https://github.com/FreyaHolmer/Mathfs/blob/master/Runtime/Curves/Polynomial.cs
6
6
  */
7
7
  export declare class Polynomial {
8
- readonly c0: number;
9
- readonly c1: number;
10
- readonly c2: number;
11
- readonly c3: number;
12
- /**
13
- * Constructs a constant polynomial
14
- *
15
- * @param c0 - The constant coefficient
16
- */
17
- static constant(c0: number): Polynomial;
18
- /**
19
- * Constructs a linear polynomial
20
- *
21
- * @param c0 - The constant coefficient
22
- * @param c1 - The linear coefficient
23
- */
24
- static linear(c0: number, c1: number): Polynomial;
25
- /**
26
- * Constructs a quadratic polynomial
27
- *
28
- * @param c0 - The constant coefficient
29
- * @param c1 - The linear coefficient
30
- * @param c2 - The quadratic coefficient
31
- */
32
- static quadratic(c0: number, c1: number, c2: number): Polynomial;
33
- /**
34
- * Constructs a cubic polynomial
35
- *
36
- * @param c0 - The constant coefficient
37
- * @param c1 - The linear coefficient
38
- * @param c2 - The quadratic coefficient
39
- * @param c3 - The cubic coefficient
40
- */
41
- static cubic(c0: number, c1: number, c2: number, c3: number): Polynomial;
42
- /**
43
- * The degree of the polynomial
44
- */
45
- get degree(): number;
46
- /**
47
- * @param c0 - The constant coefficient
48
- */
49
- constructor(c0: number);
50
- /**
51
- * @param c0 - The constant coefficient
52
- * @param c1 - The linear coefficient
53
- */
54
- constructor(c0: number, c1: number);
55
- /**
56
- * @param c0 - The constant coefficient
57
- * @param c1 - The linear coefficient
58
- * @param c2 - The quadratic coefficient
59
- */
60
- constructor(c0: number, c1: number, c2: number);
61
- /**
62
- * @param c0 - The constant coefficient
63
- * @param c1 - The linear coefficient
64
- * @param c2 - The quadratic coefficient
65
- * @param c3 - The cubic coefficient
66
- */
67
- constructor(c0: number, c1: number, c2: number, c3: number);
68
- /**
69
- * Return the nth derivative of the polynomial.
70
- *
71
- * @param n - The number of times to differentiate the polynomial.
72
- */
73
- differentiate(n?: number): Polynomial;
74
- /**
75
- * Evaluate the polynomial at the given value t.
76
- *
77
- * @param t - The value to sample at
78
- */
79
- eval(t: number): number;
80
- /**
81
- * Evaluate the nth derivative of the polynomial at the given value t.
82
- *
83
- * @param t - The value to sample at
84
- * @param derivative - The derivative of the polynomial to sample from
85
- */
86
- eval(t: number, derivative: number): number;
87
- /**
88
- * Split the polynomial into two polynomials of the same overall shape.
89
- *
90
- * @param u - The point at which to split the polynomial.
91
- */
92
- split(u: number): [Polynomial, Polynomial];
93
- /**
94
- * Calculate the roots (values where this polynomial = 0).
95
- *
96
- * @remarks
97
- * Depending on the degree of the polynomial, returns between 0 and 3 results.
98
- */
99
- roots(): number[];
100
- /**
101
- * Calculate the local extrema of the polynomial.
102
- */
103
- localExtrema(): number[];
104
- /**
105
- * Calculate the local extrema of the polynomial in the unit interval.
106
- */
107
- localExtrema01(): number[];
108
- /**
109
- * Return the output value range within the unit interval.
110
- */
111
- outputRange01(): number[];
112
- private solveCubicRoots;
113
- private solveDepressedCubicRoots;
114
- private solveQuadraticRoots;
115
- private solveLinearRoot;
116
- private almostZero;
8
+ readonly c0: number;
9
+ readonly c1: number;
10
+ readonly c2: number;
11
+ readonly c3: number;
12
+ /**
13
+ * Constructs a constant polynomial
14
+ *
15
+ * @param c0 - The constant coefficient
16
+ */
17
+ static constant(c0: number): Polynomial;
18
+ /**
19
+ * Constructs a linear polynomial
20
+ *
21
+ * @param c0 - The constant coefficient
22
+ * @param c1 - The linear coefficient
23
+ */
24
+ static linear(c0: number, c1: number): Polynomial;
25
+ /**
26
+ * Constructs a quadratic polynomial
27
+ *
28
+ * @param c0 - The constant coefficient
29
+ * @param c1 - The linear coefficient
30
+ * @param c2 - The quadratic coefficient
31
+ */
32
+ static quadratic(c0: number, c1: number, c2: number): Polynomial;
33
+ /**
34
+ * Constructs a cubic polynomial
35
+ *
36
+ * @param c0 - The constant coefficient
37
+ * @param c1 - The linear coefficient
38
+ * @param c2 - The quadratic coefficient
39
+ * @param c3 - The cubic coefficient
40
+ */
41
+ static cubic(c0: number, c1: number, c2: number, c3: number): Polynomial;
42
+ /**
43
+ * The degree of the polynomial
44
+ */
45
+ get degree(): number;
46
+ /**
47
+ * @param c0 - The constant coefficient
48
+ */
49
+ constructor(c0: number);
50
+ /**
51
+ * @param c0 - The constant coefficient
52
+ * @param c1 - The linear coefficient
53
+ */
54
+ constructor(c0: number, c1: number);
55
+ /**
56
+ * @param c0 - The constant coefficient
57
+ * @param c1 - The linear coefficient
58
+ * @param c2 - The quadratic coefficient
59
+ */
60
+ constructor(c0: number, c1: number, c2: number);
61
+ /**
62
+ * @param c0 - The constant coefficient
63
+ * @param c1 - The linear coefficient
64
+ * @param c2 - The quadratic coefficient
65
+ * @param c3 - The cubic coefficient
66
+ */
67
+ constructor(c0: number, c1: number, c2: number, c3: number);
68
+ /**
69
+ * Return the nth derivative of the polynomial.
70
+ *
71
+ * @param n - The number of times to differentiate the polynomial.
72
+ */
73
+ differentiate(n?: number): Polynomial;
74
+ /**
75
+ * Evaluate the polynomial at the given value t.
76
+ *
77
+ * @param t - The value to sample at
78
+ */
79
+ eval(t: number): number;
80
+ /**
81
+ * Evaluate the nth derivative of the polynomial at the given value t.
82
+ *
83
+ * @param t - The value to sample at
84
+ * @param derivative - The derivative of the polynomial to sample from
85
+ */
86
+ eval(t: number, derivative: number): number;
87
+ /**
88
+ * Split the polynomial into two polynomials of the same overall shape.
89
+ *
90
+ * @param u - The point at which to split the polynomial.
91
+ */
92
+ split(u: number): [Polynomial, Polynomial];
93
+ /**
94
+ * Calculate the roots (values where this polynomial = 0).
95
+ *
96
+ * @remarks
97
+ * Depending on the degree of the polynomial, returns between 0 and 3 results.
98
+ */
99
+ roots(): number[];
100
+ /**
101
+ * Calculate the local extrema of the polynomial.
102
+ */
103
+ localExtrema(): number[];
104
+ /**
105
+ * Calculate the local extrema of the polynomial in the unit interval.
106
+ */
107
+ localExtrema01(): number[];
108
+ /**
109
+ * Return the output value range within the unit interval.
110
+ */
111
+ outputRange01(): number[];
112
+ private solveCubicRoots;
113
+ private solveDepressedCubicRoots;
114
+ private solveQuadraticRoots;
115
+ private solveLinearRoot;
116
+ private almostZero;
117
117
  }
118
- //# sourceMappingURL=Polynomial.d.ts.map
118
+ //# sourceMappingURL=Polynomial.d.ts.map
@@ -1,22 +1,22 @@
1
- import { BBox, Vector2 } from '@revideo/core';
2
- import { Polynomial } from './Polynomial';
1
+ import {BBox, Vector2} from '@revideo/core';
2
+ import {Polynomial} from './Polynomial';
3
3
  export declare class Polynomial2D {
4
- readonly c0: Vector2 | Polynomial;
5
- readonly c1: Vector2 | Polynomial;
6
- readonly c2?: Vector2 | undefined;
7
- readonly c3?: Vector2 | undefined;
8
- readonly x: Polynomial;
9
- readonly y: Polynomial;
10
- constructor(c0: Vector2, c1: Vector2, c2: Vector2, c3: Vector2);
11
- constructor(c0: Vector2, c1: Vector2, c2: Vector2);
12
- constructor(x: Polynomial, y: Polynomial);
13
- eval(t: number, derivative?: number): Vector2;
14
- split(u: number): [Polynomial2D, Polynomial2D];
15
- differentiate(n?: number): Polynomial2D;
16
- evalDerivative(t: number): Vector2;
17
- /**
18
- * Calculate the tight axis-aligned bounds of the curve in the unit interval.
19
- */
20
- getBounds(): BBox;
4
+ readonly c0: Vector2 | Polynomial;
5
+ readonly c1: Vector2 | Polynomial;
6
+ readonly c2?: Vector2 | undefined;
7
+ readonly c3?: Vector2 | undefined;
8
+ readonly x: Polynomial;
9
+ readonly y: Polynomial;
10
+ constructor(c0: Vector2, c1: Vector2, c2: Vector2, c3: Vector2);
11
+ constructor(c0: Vector2, c1: Vector2, c2: Vector2);
12
+ constructor(x: Polynomial, y: Polynomial);
13
+ eval(t: number, derivative?: number): Vector2;
14
+ split(u: number): [Polynomial2D, Polynomial2D];
15
+ differentiate(n?: number): Polynomial2D;
16
+ evalDerivative(t: number): Vector2;
17
+ /**
18
+ * Calculate the tight axis-aligned bounds of the curve in the unit interval.
19
+ */
20
+ getBounds(): BBox;
21
21
  }
22
- //# sourceMappingURL=Polynomial2D.d.ts.map
22
+ //# sourceMappingURL=Polynomial2D.d.ts.map
@@ -1,39 +1,44 @@
1
- import { BBox, Vector2 } from '@revideo/core';
2
- import { CurvePoint } from './CurvePoint';
3
- import { Polynomial2D } from './Polynomial2D';
4
- import { Segment } from './Segment';
5
- import { UniformPolynomialCurveSampler } from './UniformPolynomialCurveSampler';
1
+ import {BBox, Vector2} from '@revideo/core';
2
+ import {CurvePoint} from './CurvePoint';
3
+ import {Polynomial2D} from './Polynomial2D';
4
+ import {Segment} from './Segment';
5
+ import {UniformPolynomialCurveSampler} from './UniformPolynomialCurveSampler';
6
6
  export declare abstract class PolynomialSegment extends Segment {
7
- protected readonly curve: Polynomial2D;
8
- protected readonly length: number;
9
- protected readonly pointSampler: UniformPolynomialCurveSampler;
10
- get arcLength(): number;
11
- abstract get points(): Vector2[];
12
- protected constructor(curve: Polynomial2D, length: number);
13
- getBBox(): BBox;
14
- /**
15
- * Evaluate the polynomial at the given t value.
16
- *
17
- * @param t - The t value at which to evaluate the curve.
18
- */
19
- eval(t: number): CurvePoint;
20
- /**
21
- * Split the curve into two separate polynomials at the given t value. The two
22
- * resulting curves form the same overall shape as the original curve.
23
- *
24
- * @param t - The t value at which to split the curve.
25
- */
26
- abstract split(t: number): [PolynomialSegment, PolynomialSegment];
27
- getPoint(distance: number): CurvePoint;
28
- transformPoints(matrix: DOMMatrix): Vector2[];
29
- /**
30
- * Return the tangent of the point that sits at the provided t value on the
31
- * curve.
32
- *
33
- * @param t - The t value at which to evaluate the curve.
34
- */
35
- tangent(t: number): Vector2;
36
- draw(context: CanvasRenderingContext2D | Path2D, start?: number, end?: number, move?: boolean): [CurvePoint, CurvePoint];
37
- protected abstract doDraw(context: CanvasRenderingContext2D | Path2D): void;
7
+ protected readonly curve: Polynomial2D;
8
+ protected readonly length: number;
9
+ protected readonly pointSampler: UniformPolynomialCurveSampler;
10
+ get arcLength(): number;
11
+ abstract get points(): Vector2[];
12
+ protected constructor(curve: Polynomial2D, length: number);
13
+ getBBox(): BBox;
14
+ /**
15
+ * Evaluate the polynomial at the given t value.
16
+ *
17
+ * @param t - The t value at which to evaluate the curve.
18
+ */
19
+ eval(t: number): CurvePoint;
20
+ /**
21
+ * Split the curve into two separate polynomials at the given t value. The two
22
+ * resulting curves form the same overall shape as the original curve.
23
+ *
24
+ * @param t - The t value at which to split the curve.
25
+ */
26
+ abstract split(t: number): [PolynomialSegment, PolynomialSegment];
27
+ getPoint(distance: number): CurvePoint;
28
+ transformPoints(matrix: DOMMatrix): Vector2[];
29
+ /**
30
+ * Return the tangent of the point that sits at the provided t value on the
31
+ * curve.
32
+ *
33
+ * @param t - The t value at which to evaluate the curve.
34
+ */
35
+ tangent(t: number): Vector2;
36
+ draw(
37
+ context: CanvasRenderingContext2D | Path2D,
38
+ start?: number,
39
+ end?: number,
40
+ move?: boolean,
41
+ ): [CurvePoint, CurvePoint];
42
+ protected abstract doDraw(context: CanvasRenderingContext2D | Path2D): void;
38
43
  }
39
- //# sourceMappingURL=PolynomialSegment.d.ts.map
44
+ //# sourceMappingURL=PolynomialSegment.d.ts.map
@@ -1,17 +1,17 @@
1
- import { Vector2 } from '@revideo/core';
2
- import { PolynomialSegment } from './PolynomialSegment';
1
+ import {Vector2} from '@revideo/core';
2
+ import {PolynomialSegment} from './PolynomialSegment';
3
3
  /**
4
4
  * A spline segment representing a quadratic Bézier curve.
5
5
  */
6
6
  export declare class QuadBezierSegment extends PolynomialSegment {
7
- readonly p0: Vector2;
8
- readonly p1: Vector2;
9
- readonly p2: Vector2;
10
- private static el;
11
- get points(): Vector2[];
12
- constructor(p0: Vector2, p1: Vector2, p2: Vector2);
13
- split(t: number): [PolynomialSegment, PolynomialSegment];
14
- protected static getLength(p0: Vector2, p1: Vector2, p2: Vector2): number;
15
- protected doDraw(context: CanvasRenderingContext2D | Path2D): void;
7
+ readonly p0: Vector2;
8
+ readonly p1: Vector2;
9
+ readonly p2: Vector2;
10
+ private static el;
11
+ get points(): Vector2[];
12
+ constructor(p0: Vector2, p1: Vector2, p2: Vector2);
13
+ split(t: number): [PolynomialSegment, PolynomialSegment];
14
+ protected static getLength(p0: Vector2, p1: Vector2, p2: Vector2): number;
15
+ protected doDraw(context: CanvasRenderingContext2D | Path2D): void;
16
16
  }
17
- //# sourceMappingURL=QuadBezierSegment.d.ts.map
17
+ //# sourceMappingURL=QuadBezierSegment.d.ts.map
@@ -1,9 +1,14 @@
1
- import { Vector2 } from '@revideo/core';
2
- import { CurvePoint } from './CurvePoint';
1
+ import {Vector2} from '@revideo/core';
2
+ import {CurvePoint} from './CurvePoint';
3
3
  export declare abstract class Segment {
4
- abstract readonly points: Vector2[];
5
- abstract draw(context: CanvasRenderingContext2D | Path2D, start: number, end: number, move: boolean): [CurvePoint, CurvePoint];
6
- abstract getPoint(distance: number): CurvePoint;
7
- abstract get arcLength(): number;
4
+ abstract readonly points: Vector2[];
5
+ abstract draw(
6
+ context: CanvasRenderingContext2D | Path2D,
7
+ start: number,
8
+ end: number,
9
+ move: boolean,
10
+ ): [CurvePoint, CurvePoint];
11
+ abstract getPoint(distance: number): CurvePoint;
12
+ abstract get arcLength(): number;
8
13
  }
9
- //# sourceMappingURL=Segment.d.ts.map
14
+ //# sourceMappingURL=Segment.d.ts.map
@@ -1,5 +1,5 @@
1
- import { CurvePoint } from './CurvePoint';
2
- import { PolynomialSegment } from './PolynomialSegment';
1
+ import {CurvePoint} from './CurvePoint';
2
+ import {PolynomialSegment} from './PolynomialSegment';
3
3
  /**
4
4
  * Class to uniformly sample points on a given polynomial curve.
5
5
  *
@@ -8,36 +8,36 @@ import { PolynomialSegment } from './PolynomialSegment';
8
8
  * re-parameterizes the curve by arclength.
9
9
  */
10
10
  export declare class UniformPolynomialCurveSampler {
11
- private readonly curve;
12
- private sampledDistances;
13
- /**
14
- * @param curve - The curve to sample
15
- * @param samples - How many points to sample from the provided curve. The
16
- * more points get sampled, the higher the resolution–and
17
- * therefore precision–of the sampler.
18
- */
19
- constructor(curve: PolynomialSegment, samples?: number);
20
- /**
21
- * Discard all previously sampled points and resample the provided number of
22
- * points from the curve.
23
- *
24
- * @param samples - The number of points to sample.
25
- */
26
- resample(samples: number): void;
27
- /**
28
- * Return the point at the provided distance along the sampled curve's
29
- * arclength.
30
- *
31
- * @param distance - The distance along the curve's arclength for which to
32
- * retrieve the point.
33
- */
34
- pointAtDistance(distance: number): CurvePoint;
35
- /**
36
- * Return the t value for the point at the provided distance along the sampled
37
- * curve's arc length.
38
- *
39
- * @param distance - The distance along the arclength
40
- */
41
- distanceToT(distance: number): number;
11
+ private readonly curve;
12
+ private sampledDistances;
13
+ /**
14
+ * @param curve - The curve to sample
15
+ * @param samples - How many points to sample from the provided curve. The
16
+ * more points get sampled, the higher the resolution–and
17
+ * therefore precision–of the sampler.
18
+ */
19
+ constructor(curve: PolynomialSegment, samples?: number);
20
+ /**
21
+ * Discard all previously sampled points and resample the provided number of
22
+ * points from the curve.
23
+ *
24
+ * @param samples - The number of points to sample.
25
+ */
26
+ resample(samples: number): void;
27
+ /**
28
+ * Return the point at the provided distance along the sampled curve's
29
+ * arclength.
30
+ *
31
+ * @param distance - The distance along the curve's arclength for which to
32
+ * retrieve the point.
33
+ */
34
+ pointAtDistance(distance: number): CurvePoint;
35
+ /**
36
+ * Return the t value for the point at the provided distance along the sampled
37
+ * curve's arc length.
38
+ *
39
+ * @param distance - The distance along the arclength
40
+ */
41
+ distanceToT(distance: number): number;
42
42
  }
43
- //# sourceMappingURL=UniformPolynomialCurveSampler.d.ts.map
43
+ //# sourceMappingURL=UniformPolynomialCurveSampler.d.ts.map
@@ -1,5 +1,5 @@
1
- import { Vector2 } from '@revideo/core';
2
- import { CurveProfile } from './CurveProfile';
1
+ import {Vector2} from '@revideo/core';
2
+ import {CurveProfile} from './CurveProfile';
3
3
  /**
4
4
  * Calculate polygon perimeter
5
5
  * @param points - polygon points
@@ -13,7 +13,11 @@ export declare function polygonLength(points: Vector2[]): number;
13
13
  * @param offset - offset for first polygon points
14
14
  * @returns
15
15
  */
16
- export declare function calculateLerpDistance(points: Vector2[], reference: Vector2[], offset: number): number;
16
+ export declare function calculateLerpDistance(
17
+ points: Vector2[],
18
+ reference: Vector2[],
19
+ offset: number,
20
+ ): number;
17
21
  /**
18
22
  * Interpolate between two polygon points.
19
23
  * @param from - source polygon points
@@ -21,12 +25,19 @@ export declare function calculateLerpDistance(points: Vector2[], reference: Vect
21
25
  * @param value - interpolation progress
22
26
  * @returns - new polygon points
23
27
  */
24
- export declare function polygonPointsLerp(from: Vector2[], to: Vector2[], value: number): Vector2[];
28
+ export declare function polygonPointsLerp(
29
+ from: Vector2[],
30
+ to: Vector2[],
31
+ value: number,
32
+ ): Vector2[];
25
33
  /**
26
34
  * Create interpolator to tween between two curve
27
35
  * @param a - source curve
28
36
  * @param b - target curve
29
37
  * @returns - curve interpolator
30
38
  */
31
- export declare function createCurveProfileLerp(a: CurveProfile, b: CurveProfile): (progress: number) => CurveProfile;
32
- //# sourceMappingURL=createCurveProfileLerp.d.ts.map
39
+ export declare function createCurveProfileLerp(
40
+ a: CurveProfile,
41
+ b: CurveProfile,
42
+ ): (progress: number) => CurveProfile;
43
+ //# sourceMappingURL=createCurveProfileLerp.d.ts.map
@@ -1,5 +1,5 @@
1
- import { CurveProfile } from './CurveProfile';
2
- import { KnotInfo } from './KnotInfo';
1
+ import {CurveProfile} from './CurveProfile';
2
+ import {KnotInfo} from './KnotInfo';
3
3
  /**
4
4
  * Calculate the curve profile of a spline based on a set of knots.
5
5
  *
@@ -8,5 +8,9 @@ import { KnotInfo } from './KnotInfo';
8
8
  * @param smoothness - The desired smoothness of the spline when using auto
9
9
  * calculated handles.
10
10
  */
11
- export declare function getBezierSplineProfile(knots: KnotInfo[], closed: boolean, smoothness: number): CurveProfile;
12
- //# sourceMappingURL=getBezierSplineProfile.d.ts.map
11
+ export declare function getBezierSplineProfile(
12
+ knots: KnotInfo[],
13
+ closed: boolean,
14
+ smoothness: number,
15
+ ): CurveProfile;
16
+ //# sourceMappingURL=getBezierSplineProfile.d.ts.map
@@ -1,4 +1,10 @@
1
- import { Vector2 } from '@revideo/core';
2
- import { CurveProfile } from './CurveProfile';
3
- export declare function getCircleProfile(size: Vector2, startAngle: number, endAngle: number, closed: boolean, counterclockwise?: boolean): CurveProfile;
4
- //# sourceMappingURL=getCircleProfile.d.ts.map
1
+ import {Vector2} from '@revideo/core';
2
+ import {CurveProfile} from './CurveProfile';
3
+ export declare function getCircleProfile(
4
+ size: Vector2,
5
+ startAngle: number,
6
+ endAngle: number,
7
+ closed: boolean,
8
+ counterclockwise?: boolean,
9
+ ): CurveProfile;
10
+ //# sourceMappingURL=getCircleProfile.d.ts.map
@@ -1,3 +1,3 @@
1
- import { CurveProfile } from './CurveProfile';
1
+ import {CurveProfile} from './CurveProfile';
2
2
  export declare function getPathProfile(data: string): CurveProfile;
3
- //# sourceMappingURL=getPathProfile.d.ts.map
3
+ //# sourceMappingURL=getPathProfile.d.ts.map
@@ -1,4 +1,7 @@
1
- import { CurvePoint } from './CurvePoint';
2
- import { CurveProfile } from './CurveProfile';
3
- export declare function getPointAtDistance(profile: CurveProfile, distance: number): CurvePoint;
4
- //# sourceMappingURL=getPointAtDistance.d.ts.map
1
+ import {CurvePoint} from './CurvePoint';
2
+ import {CurveProfile} from './CurveProfile';
3
+ export declare function getPointAtDistance(
4
+ profile: CurveProfile,
5
+ distance: number,
6
+ ): CurvePoint;
7
+ //# sourceMappingURL=getPointAtDistance.d.ts.map
@@ -1,4 +1,8 @@
1
- import { Vector2 } from '@revideo/core';
2
- import { CurveProfile } from './CurveProfile';
3
- export declare function getPolylineProfile(points: readonly Vector2[], radius: number, closed: boolean): CurveProfile;
4
- //# sourceMappingURL=getPolylineProfile.d.ts.map
1
+ import {Vector2} from '@revideo/core';
2
+ import {CurveProfile} from './CurveProfile';
3
+ export declare function getPolylineProfile(
4
+ points: readonly Vector2[],
5
+ radius: number,
6
+ closed: boolean,
7
+ ): CurveProfile;
8
+ //# sourceMappingURL=getPolylineProfile.d.ts.map
@@ -1,4 +1,9 @@
1
- import { BBox, Spacing } from '@revideo/core';
2
- import { CurveProfile } from './CurveProfile';
3
- export declare function getRectProfile(rect: BBox, radius: Spacing, smoothCorners: boolean, cornerSharpness: number): CurveProfile;
4
- //# sourceMappingURL=getRectProfile.d.ts.map
1
+ import {BBox, Spacing} from '@revideo/core';
2
+ import {CurveProfile} from './CurveProfile';
3
+ export declare function getRectProfile(
4
+ rect: BBox,
5
+ radius: Spacing,
6
+ smoothCorners: boolean,
7
+ cornerSharpness: number,
8
+ ): CurveProfile;
9
+ //# sourceMappingURL=getRectProfile.d.ts.map
@@ -14,4 +14,4 @@ export * from './getCircleProfile';
14
14
  export * from './getPointAtDistance';
15
15
  export * from './getPolylineProfile';
16
16
  export * from './getRectProfile';
17
- //# sourceMappingURL=index.d.ts.map
17
+ //# sourceMappingURL=index.d.ts.map
@@ -14,4 +14,4 @@ export * from './getCircleProfile';
14
14
  export * from './getPointAtDistance';
15
15
  export * from './getPolylineProfile';
16
16
  export * from './getRectProfile';
17
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL2N1cnZlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGlCQUFpQixDQUFDO0FBQ2hDLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsWUFBWSxDQUFDO0FBQzNCLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMsY0FBYyxDQUFDO0FBQzdCLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLFdBQVcsQ0FBQztBQUMxQixjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsa0JBQWtCLENBQUMifQ==
17
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL2N1cnZlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGlCQUFpQixDQUFDO0FBQ2hDLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsWUFBWSxDQUFDO0FBQzNCLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMsY0FBYyxDQUFDO0FBQzdCLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLFdBQVcsQ0FBQztBQUMxQixjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsa0JBQWtCLENBQUMifQ==
@@ -1,5 +1,5 @@
1
- import { Signal } from '@revideo/core';
2
- import type { CanvasStyle, PossibleCanvasStyle } from '../partials';
1
+ import {Signal} from '@revideo/core';
2
+ import type {CanvasStyle, PossibleCanvasStyle} from '../partials';
3
3
  export type CanvasStyleSignal<T> = Signal<PossibleCanvasStyle, CanvasStyle, T>;
4
4
  export declare function canvasStyleSignal(): PropertyDecorator;
5
- //# sourceMappingURL=canvasStyleSignal.d.ts.map
5
+ //# sourceMappingURL=canvasStyleSignal.d.ts.map
@@ -1,2 +1,2 @@
1
1
  export declare function colorSignal(): PropertyDecorator;
2
- //# sourceMappingURL=colorSignal.d.ts.map
2
+ //# sourceMappingURL=colorSignal.d.ts.map