@revideo/2d 0.2.6-alpha.904 → 0.2.6
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/lib/code/CodeCursor.d.ts +74 -74
- package/lib/code/CodeCursor.js +286 -352
- package/lib/code/CodeDiffer.d.ts +16 -21
- package/lib/code/CodeDiffer.js +41 -39
- package/lib/code/CodeFragment.d.ts +8 -16
- package/lib/code/CodeFragment.js +36 -36
- package/lib/code/CodeHighlighter.d.ts +59 -59
- package/lib/code/CodeHighlighter.js +1 -1
- package/lib/code/CodeMetrics.d.ts +8 -12
- package/lib/code/CodeMetrics.js +24 -26
- package/lib/code/CodeRange.d.ts +5 -21
- package/lib/code/CodeRange.js +124 -131
- package/lib/code/CodeScope.d.ts +8 -18
- package/lib/code/CodeScope.js +61 -59
- package/lib/code/CodeSelection.d.ts +4 -9
- package/lib/code/CodeSelection.js +8 -8
- package/lib/code/CodeSignal.d.ts +47 -74
- package/lib/code/CodeSignal.js +189 -206
- package/lib/code/CodeTokenizer.d.ts +1 -1
- package/lib/code/CodeTokenizer.js +41 -41
- package/lib/code/DefaultHighlightStyle.d.ts +2 -2
- package/lib/code/DefaultHighlightStyle.js +96 -96
- package/lib/code/LezerHighlighter.d.ts +19 -21
- package/lib/code/LezerHighlighter.js +101 -101
- package/lib/code/diff.d.ts +9 -12
- package/lib/code/diff.js +205 -218
- package/lib/code/extractRange.d.ts +4 -7
- package/lib/code/extractRange.js +71 -79
- package/lib/code/index.d.ts +1 -1
- package/lib/code/index.js +1 -1
- package/lib/components/Bezier.d.ts +18 -18
- package/lib/components/Bezier.js +75 -86
- package/lib/components/Circle.d.ts +90 -95
- package/lib/components/Circle.js +74 -85
- package/lib/components/CodeBlock.d.ts +1 -1
- package/lib/components/CubicBezier.d.ts +36 -36
- package/lib/components/CubicBezier.js +49 -52
- package/lib/components/Curve.d.ts +198 -208
- package/lib/components/Grid.d.ts +42 -47
- package/lib/components/Icon.d.ts +50 -55
- package/lib/components/Knot.d.ts +78 -97
- package/lib/components/Latex.d.ts +12 -12
- package/lib/components/Line.d.ts +49 -61
- package/lib/components/Node.d.ts +1 -1
- package/lib/components/Path.d.ts +14 -35
- package/lib/components/Path.js +89 -100
- package/lib/components/Polygon.d.ts +55 -60
- package/lib/components/Polygon.js +66 -71
- package/lib/components/QuadBezier.d.ts +29 -29
- package/lib/components/QuadBezier.js +45 -50
- package/lib/components/Ray.d.ts +28 -28
- package/lib/components/Ray.js +64 -71
- package/lib/components/Rect.d.ts +108 -115
- package/lib/components/Rect.js +72 -78
- package/lib/components/SVG.d.ts +139 -165
- package/lib/components/Shape.d.ts +1 -1
- package/lib/components/Spline.d.ts +40 -46
- package/lib/components/Video.d.ts.map +1 -1
- package/lib/components/Video.js +7 -2
- package/lib/components/index.d.ts +1 -1
- package/lib/components/types.d.ts +9 -22
- package/lib/curves/ArcSegment.d.ts +24 -36
- package/lib/curves/CircleSegment.d.ts +16 -26
- package/lib/curves/CircleSegment.js +49 -56
- package/lib/curves/CubicBezierSegment.d.ts +13 -18
- package/lib/curves/CubicBezierSegment.js +46 -79
- package/lib/curves/CurveDrawingInfo.d.ts +9 -9
- package/lib/curves/CurveDrawingInfo.js +1 -1
- package/lib/curves/CurvePoint.d.ts +13 -13
- package/lib/curves/CurvePoint.js +1 -1
- package/lib/curves/CurveProfile.d.ts +5 -5
- package/lib/curves/CurveProfile.js +1 -1
- package/lib/curves/KnotInfo.d.ts +8 -8
- package/lib/curves/KnotInfo.js +1 -1
- package/lib/curves/LineSegment.d.ts +14 -19
- package/lib/curves/LineSegment.js +42 -42
- package/lib/curves/Polynomial.d.ts +110 -110
- package/lib/curves/Polynomial.js +239 -249
- package/lib/curves/Polynomial2D.d.ts +20 -20
- package/lib/curves/Polynomial2D.js +42 -46
- package/lib/curves/PolynomialSegment.d.ts +37 -42
- package/lib/curves/PolynomialSegment.js +81 -83
- package/lib/curves/QuadBezierSegment.d.ts +12 -12
- package/lib/curves/QuadBezierSegment.js +41 -71
- package/lib/curves/Segment.d.ts +7 -12
- package/lib/curves/Segment.js +3 -2
- package/lib/curves/UniformPolynomialCurveSampler.d.ts +34 -34
- package/lib/curves/UniformPolynomialCurveSampler.js +62 -68
- package/lib/curves/createCurveProfileLerp.d.ts +6 -17
- package/lib/curves/createCurveProfileLerp.js +208 -211
- package/lib/curves/getBezierSplineProfile.d.ts +4 -8
- package/lib/curves/getBezierSplineProfile.js +101 -145
- package/lib/curves/getCircleProfile.d.ts +4 -10
- package/lib/curves/getCircleProfile.js +40 -72
- package/lib/curves/getPathProfile.d.ts +2 -2
- package/lib/curves/getPathProfile.js +112 -135
- package/lib/curves/getPointAtDistance.d.ts +4 -7
- package/lib/curves/getPointAtDistance.js +12 -12
- package/lib/curves/getPolylineProfile.d.ts +4 -8
- package/lib/curves/getPolylineProfile.js +54 -67
- package/lib/curves/getRectProfile.d.ts +4 -9
- package/lib/curves/getRectProfile.js +52 -117
- package/lib/curves/index.d.ts +1 -1
- package/lib/curves/index.js +1 -1
- package/lib/decorators/canvasStyleSignal.d.ts +3 -3
- package/lib/decorators/canvasStyleSignal.js +10 -10
- package/lib/decorators/colorSignal.d.ts +1 -1
- package/lib/decorators/colorSignal.js +7 -7
- package/lib/decorators/compound.d.ts +2 -4
- package/lib/decorators/compound.js +23 -43
- package/lib/decorators/computed.d.ts +1 -1
- package/lib/decorators/computed.js +9 -9
- package/lib/decorators/defaultStyle.d.ts +2 -5
- package/lib/decorators/defaultStyle.js +11 -11
- package/lib/decorators/filtersSignal.d.ts +8 -28
- package/lib/decorators/filtersSignal.js +64 -87
- package/lib/decorators/index.d.ts +1 -1
- package/lib/decorators/index.js +1 -1
- package/lib/decorators/initializers.d.ts +2 -5
- package/lib/decorators/initializers.js +19 -18
- package/lib/decorators/nodeName.d.ts +1 -1
- package/lib/decorators/nodeName.js +4 -4
- package/lib/decorators/signal.d.ts +20 -40
- package/lib/decorators/signal.js +104 -113
- package/lib/decorators/spacingSignal.d.ts +1 -1
- package/lib/decorators/spacingSignal.js +13 -13
- package/lib/decorators/vector2Signal.d.ts +7 -13
- package/lib/decorators/vector2Signal.js +13 -15
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/jsx-dev-runtime.d.ts +3 -3
- package/lib/jsx-dev-runtime.js +3 -3
- package/lib/jsx-runtime.d.ts +9 -19
- package/lib/jsx-runtime.js +18 -18
- package/lib/partials/Filter.d.ts +16 -24
- package/lib/partials/Filter.js +69 -69
- package/lib/partials/Gradient.d.ts +24 -30
- package/lib/partials/Gradient.js +58 -69
- package/lib/partials/Pattern.d.ts +9 -14
- package/lib/partials/Pattern.js +24 -30
- package/lib/partials/ShaderConfig.d.ts +74 -81
- package/lib/partials/ShaderConfig.js +23 -22
- package/lib/partials/index.d.ts +1 -1
- package/lib/partials/index.js +1 -1
- package/lib/partials/types.d.ts +6 -19
- package/lib/partials/types.js +1 -1
- package/lib/scenes/index.d.ts +1 -1
- package/lib/scenes/makeScene2D.d.ts +5 -7
- package/lib/scenes/useScene2D.d.ts +2 -2
- package/lib/tsconfig.build.tsbuildinfo +1 -1
- package/lib/utils/CanvasUtils.d.ts +1 -1
- package/lib/utils/CanvasUtils.js +105 -186
- package/lib/utils/diff.d.ts +18 -25
- package/lib/utils/diff.js +87 -84
- package/lib/utils/index.d.ts +1 -1
- package/lib/utils/index.js +1 -1
- package/lib/utils/is.d.ts +2 -4
- package/lib/utils/is.js +2 -2
- package/lib/utils/makeSignalExtensions.d.ts +4 -11
- package/lib/utils/makeSignalExtensions.js +17 -17
- package/package.json +5 -5
- package/src/lib/components/Video.ts +7 -1
|
@@ -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
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
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
|