@revideo/2d 0.2.1-alpha.891 → 0.2.2

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 (198) hide show
  1. package/lib/code/CodeCursor.d.ts +74 -74
  2. package/lib/code/CodeCursor.js +286 -352
  3. package/lib/code/CodeDiffer.d.ts +16 -21
  4. package/lib/code/CodeDiffer.js +41 -39
  5. package/lib/code/CodeFragment.d.ts +8 -16
  6. package/lib/code/CodeFragment.js +36 -36
  7. package/lib/code/CodeHighlighter.d.ts +59 -59
  8. package/lib/code/CodeHighlighter.js +1 -1
  9. package/lib/code/CodeMetrics.d.ts +8 -12
  10. package/lib/code/CodeMetrics.js +24 -26
  11. package/lib/code/CodeRange.d.ts +5 -21
  12. package/lib/code/CodeRange.js +124 -131
  13. package/lib/code/CodeScope.d.ts +8 -18
  14. package/lib/code/CodeScope.js +61 -59
  15. package/lib/code/CodeSelection.d.ts +4 -9
  16. package/lib/code/CodeSelection.js +8 -8
  17. package/lib/code/CodeSignal.d.ts +47 -74
  18. package/lib/code/CodeSignal.js +189 -206
  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 +19 -21
  24. package/lib/code/LezerHighlighter.js +101 -101
  25. package/lib/code/diff.d.ts +9 -12
  26. package/lib/code/diff.js +205 -218
  27. package/lib/code/extractRange.d.ts +4 -7
  28. package/lib/code/extractRange.js +71 -79
  29. package/lib/code/index.d.ts +1 -1
  30. package/lib/code/index.js +1 -1
  31. package/lib/components/Audio.d.ts +11 -11
  32. package/lib/components/Audio.js +109 -115
  33. package/lib/components/Bezier.d.ts +18 -18
  34. package/lib/components/Bezier.js +75 -86
  35. package/lib/components/Circle.d.ts +90 -95
  36. package/lib/components/Circle.js +74 -85
  37. package/lib/components/Code.d.ts +211 -244
  38. package/lib/components/Code.js +269 -317
  39. package/lib/components/CodeBlock.d.ts +67 -109
  40. package/lib/components/CodeBlock.js +373 -414
  41. package/lib/components/CubicBezier.d.ts +36 -36
  42. package/lib/components/CubicBezier.js +49 -52
  43. package/lib/components/Curve.d.ts +198 -208
  44. package/lib/components/Curve.js +269 -270
  45. package/lib/components/Grid.d.ts +42 -47
  46. package/lib/components/Grid.js +56 -63
  47. package/lib/components/Icon.d.ts +50 -55
  48. package/lib/components/Icon.js +50 -58
  49. package/lib/components/Img.d.ts +79 -86
  50. package/lib/components/Img.js +181 -193
  51. package/lib/components/Knot.d.ts +78 -97
  52. package/lib/components/Knot.js +60 -81
  53. package/lib/components/Latex.d.ts +12 -12
  54. package/lib/components/Latex.js +65 -77
  55. package/lib/components/Layout.d.ts +413 -455
  56. package/lib/components/Layout.js +681 -666
  57. package/lib/components/Line.d.ts +49 -61
  58. package/lib/components/Line.js +193 -216
  59. package/lib/components/Media.d.ts +35 -35
  60. package/lib/components/Media.js +134 -135
  61. package/lib/components/Node.d.ts +830 -875
  62. package/lib/components/Node.js +1314 -1383
  63. package/lib/components/Path.d.ts +14 -35
  64. package/lib/components/Path.js +89 -100
  65. package/lib/components/Polygon.d.ts +55 -60
  66. package/lib/components/Polygon.js +66 -71
  67. package/lib/components/QuadBezier.d.ts +29 -29
  68. package/lib/components/QuadBezier.js +45 -50
  69. package/lib/components/Ray.d.ts +28 -28
  70. package/lib/components/Ray.js +64 -71
  71. package/lib/components/Rect.d.ts +108 -115
  72. package/lib/components/Rect.js +72 -78
  73. package/lib/components/SVG.d.ts +139 -165
  74. package/lib/components/SVG.js +541 -609
  75. package/lib/components/Shape.d.ts +35 -44
  76. package/lib/components/Shape.js +127 -112
  77. package/lib/components/Spline.d.ts +40 -46
  78. package/lib/components/Spline.js +175 -190
  79. package/lib/components/Txt.d.ts +44 -55
  80. package/lib/components/Txt.js +155 -156
  81. package/lib/components/TxtLeaf.d.ts +16 -20
  82. package/lib/components/TxtLeaf.js +158 -177
  83. package/lib/components/Video.d.ts +41 -41
  84. package/lib/components/Video.js +135 -138
  85. package/lib/components/View2D.d.ts +21 -21
  86. package/lib/components/View2D.js +85 -98
  87. package/lib/components/index.d.ts +1 -1
  88. package/lib/components/index.js +1 -1
  89. package/lib/components/types.d.ts +9 -22
  90. package/lib/components/types.js +1 -1
  91. package/lib/curves/ArcSegment.d.ts +24 -36
  92. package/lib/curves/ArcSegment.js +94 -145
  93. package/lib/curves/CircleSegment.d.ts +16 -26
  94. package/lib/curves/CircleSegment.js +49 -56
  95. package/lib/curves/CubicBezierSegment.d.ts +13 -18
  96. package/lib/curves/CubicBezierSegment.js +46 -79
  97. package/lib/curves/CurveDrawingInfo.d.ts +9 -9
  98. package/lib/curves/CurveDrawingInfo.js +1 -1
  99. package/lib/curves/CurvePoint.d.ts +13 -13
  100. package/lib/curves/CurvePoint.js +1 -1
  101. package/lib/curves/CurveProfile.d.ts +5 -5
  102. package/lib/curves/CurveProfile.js +1 -1
  103. package/lib/curves/KnotInfo.d.ts +8 -8
  104. package/lib/curves/KnotInfo.js +1 -1
  105. package/lib/curves/LineSegment.d.ts +14 -19
  106. package/lib/curves/LineSegment.js +42 -42
  107. package/lib/curves/Polynomial.d.ts +110 -110
  108. package/lib/curves/Polynomial.js +239 -249
  109. package/lib/curves/Polynomial2D.d.ts +20 -20
  110. package/lib/curves/Polynomial2D.js +42 -46
  111. package/lib/curves/PolynomialSegment.d.ts +37 -42
  112. package/lib/curves/PolynomialSegment.js +81 -83
  113. package/lib/curves/QuadBezierSegment.d.ts +12 -12
  114. package/lib/curves/QuadBezierSegment.js +41 -71
  115. package/lib/curves/Segment.d.ts +7 -12
  116. package/lib/curves/Segment.js +3 -2
  117. package/lib/curves/UniformPolynomialCurveSampler.d.ts +34 -34
  118. package/lib/curves/UniformPolynomialCurveSampler.js +62 -68
  119. package/lib/curves/createCurveProfileLerp.d.ts +6 -17
  120. package/lib/curves/createCurveProfileLerp.js +208 -211
  121. package/lib/curves/getBezierSplineProfile.d.ts +4 -8
  122. package/lib/curves/getBezierSplineProfile.js +101 -145
  123. package/lib/curves/getCircleProfile.d.ts +4 -10
  124. package/lib/curves/getCircleProfile.js +40 -72
  125. package/lib/curves/getPathProfile.d.ts +2 -2
  126. package/lib/curves/getPathProfile.js +112 -135
  127. package/lib/curves/getPointAtDistance.d.ts +4 -7
  128. package/lib/curves/getPointAtDistance.js +12 -12
  129. package/lib/curves/getPolylineProfile.d.ts +4 -8
  130. package/lib/curves/getPolylineProfile.js +54 -67
  131. package/lib/curves/getRectProfile.d.ts +4 -9
  132. package/lib/curves/getRectProfile.js +52 -117
  133. package/lib/curves/index.d.ts +1 -1
  134. package/lib/curves/index.js +1 -1
  135. package/lib/decorators/canvasStyleSignal.d.ts +3 -3
  136. package/lib/decorators/canvasStyleSignal.js +10 -10
  137. package/lib/decorators/colorSignal.d.ts +1 -1
  138. package/lib/decorators/colorSignal.js +7 -7
  139. package/lib/decorators/compound.d.ts +2 -4
  140. package/lib/decorators/compound.js +23 -43
  141. package/lib/decorators/computed.d.ts +1 -1
  142. package/lib/decorators/computed.js +9 -9
  143. package/lib/decorators/defaultStyle.d.ts +2 -5
  144. package/lib/decorators/defaultStyle.js +11 -11
  145. package/lib/decorators/filtersSignal.d.ts +8 -28
  146. package/lib/decorators/filtersSignal.js +64 -87
  147. package/lib/decorators/index.d.ts +1 -1
  148. package/lib/decorators/index.js +1 -1
  149. package/lib/decorators/initializers.d.ts +2 -5
  150. package/lib/decorators/initializers.js +19 -18
  151. package/lib/decorators/nodeName.d.ts +1 -1
  152. package/lib/decorators/nodeName.js +4 -4
  153. package/lib/decorators/signal.d.ts +20 -40
  154. package/lib/decorators/signal.js +104 -113
  155. package/lib/decorators/spacingSignal.d.ts +1 -1
  156. package/lib/decorators/spacingSignal.js +13 -13
  157. package/lib/decorators/vector2Signal.d.ts +7 -13
  158. package/lib/decorators/vector2Signal.js +13 -15
  159. package/lib/index.d.ts +1 -1
  160. package/lib/index.js +1 -1
  161. package/lib/jsx-dev-runtime.d.ts +3 -3
  162. package/lib/jsx-dev-runtime.js +3 -3
  163. package/lib/jsx-runtime.d.ts +9 -19
  164. package/lib/jsx-runtime.js +18 -18
  165. package/lib/partials/Filter.d.ts +16 -24
  166. package/lib/partials/Filter.js +69 -69
  167. package/lib/partials/Gradient.d.ts +24 -30
  168. package/lib/partials/Gradient.js +58 -69
  169. package/lib/partials/Pattern.d.ts +9 -14
  170. package/lib/partials/Pattern.js +24 -30
  171. package/lib/partials/ShaderConfig.d.ts +74 -81
  172. package/lib/partials/ShaderConfig.js +23 -22
  173. package/lib/partials/index.d.ts +1 -1
  174. package/lib/partials/index.js +1 -1
  175. package/lib/partials/types.d.ts +6 -19
  176. package/lib/partials/types.js +1 -1
  177. package/lib/scenes/Scene2D.d.ts +23 -42
  178. package/lib/scenes/Scene2D.js +151 -161
  179. package/lib/scenes/index.d.ts +1 -1
  180. package/lib/scenes/index.js +1 -1
  181. package/lib/scenes/makeScene2D.d.ts +5 -7
  182. package/lib/scenes/makeScene2D.js +10 -10
  183. package/lib/scenes/useScene2D.d.ts +2 -2
  184. package/lib/scenes/useScene2D.js +3 -3
  185. package/lib/utils/CanvasUtils.d.ts +21 -93
  186. package/lib/utils/CanvasUtils.js +105 -186
  187. package/lib/utils/diff.d.ts +18 -25
  188. package/lib/utils/diff.js +87 -84
  189. package/lib/utils/index.d.ts +1 -1
  190. package/lib/utils/index.js +1 -1
  191. package/lib/utils/is.d.ts +2 -4
  192. package/lib/utils/is.js +2 -2
  193. package/lib/utils/makeSignalExtensions.d.ts +4 -11
  194. package/lib/utils/makeSignalExtensions.js +17 -17
  195. package/package.json +5 -5
  196. package/lib/components/AudioTest.d.ts +0 -99
  197. package/lib/components/AudioTest.d.ts.map +0 -1
  198. package/lib/components/AudioTest.js +0 -281
@@ -1,20 +1,20 @@
1
- import {PossibleVector2, SignalValue, Vector2Signal} from '@revideo/core';
2
- import {PolynomialSegment} from '../curves/PolynomialSegment';
3
- import {Bezier, BezierOverlayInfo} from './Bezier';
4
- import {CurveProps} from './Curve';
1
+ import { PossibleVector2, SignalValue, Vector2Signal } from '@revideo/core';
2
+ import { PolynomialSegment } from '../curves/PolynomialSegment';
3
+ import { Bezier, BezierOverlayInfo } from './Bezier';
4
+ import { CurveProps } from './Curve';
5
5
  export interface CubicBezierProps extends CurveProps {
6
- p0?: SignalValue<PossibleVector2>;
7
- p0X?: SignalValue<number>;
8
- p0Y?: SignalValue<number>;
9
- p1?: SignalValue<PossibleVector2>;
10
- p1X?: SignalValue<number>;
11
- p1Y?: SignalValue<number>;
12
- p2?: SignalValue<PossibleVector2>;
13
- p2X?: SignalValue<number>;
14
- p2Y?: SignalValue<number>;
15
- p3?: SignalValue<PossibleVector2>;
16
- p3X?: SignalValue<number>;
17
- p3Y?: SignalValue<number>;
6
+ p0?: SignalValue<PossibleVector2>;
7
+ p0X?: SignalValue<number>;
8
+ p0Y?: SignalValue<number>;
9
+ p1?: SignalValue<PossibleVector2>;
10
+ p1X?: SignalValue<number>;
11
+ p1Y?: SignalValue<number>;
12
+ p2?: SignalValue<PossibleVector2>;
13
+ p2X?: SignalValue<number>;
14
+ p2Y?: SignalValue<number>;
15
+ p3?: SignalValue<PossibleVector2>;
16
+ p3X?: SignalValue<number>;
17
+ p3Y?: SignalValue<number>;
18
18
  }
19
19
  /**
20
20
  * A node for drawing a cubic Bézier curve.
@@ -46,24 +46,24 @@ export interface CubicBezierProps extends CurveProps {
46
46
  * ```
47
47
  */
48
48
  export declare class CubicBezier extends Bezier {
49
- /**
50
- * The start point of the Bézier curve.
51
- */
52
- readonly p0: Vector2Signal<this>;
53
- /**
54
- * The first control point of the Bézier curve.
55
- */
56
- readonly p1: Vector2Signal<this>;
57
- /**
58
- * The second control point of the Bézier curve.
59
- */
60
- readonly p2: Vector2Signal<this>;
61
- /**
62
- * The end point of the Bézier curve.
63
- */
64
- readonly p3: Vector2Signal<this>;
65
- constructor(props: CubicBezierProps);
66
- protected segment(): PolynomialSegment;
67
- protected overlayInfo(matrix: DOMMatrix): BezierOverlayInfo;
49
+ /**
50
+ * The start point of the Bézier curve.
51
+ */
52
+ readonly p0: Vector2Signal<this>;
53
+ /**
54
+ * The first control point of the Bézier curve.
55
+ */
56
+ readonly p1: Vector2Signal<this>;
57
+ /**
58
+ * The second control point of the Bézier curve.
59
+ */
60
+ readonly p2: Vector2Signal<this>;
61
+ /**
62
+ * The end point of the Bézier curve.
63
+ */
64
+ readonly p3: Vector2Signal<this>;
65
+ constructor(props: CubicBezierProps);
66
+ protected segment(): PolynomialSegment;
67
+ protected overlayInfo(matrix: DOMMatrix): BezierOverlayInfo;
68
68
  }
69
- //# sourceMappingURL=CubicBezier.d.ts.map
69
+ //# sourceMappingURL=CubicBezier.d.ts.map
@@ -1,26 +1,13 @@
1
- var __decorate =
2
- (this && this.__decorate) ||
3
- function (decorators, target, key, desc) {
4
- var c = arguments.length,
5
- r =
6
- c < 3
7
- ? target
8
- : desc === null
9
- ? (desc = Object.getOwnPropertyDescriptor(target, key))
10
- : desc,
11
- d;
12
- if (typeof Reflect === 'object' && typeof Reflect.decorate === 'function')
13
- r = Reflect.decorate(decorators, target, key, desc);
14
- else
15
- for (var i = decorators.length - 1; i >= 0; i--)
16
- if ((d = decorators[i]))
17
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
5
  return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
20
- import {CubicBezierSegment} from '../curves';
21
- import {computed, vector2Signal} from '../decorators';
22
- import {bezierCurveTo, lineTo, moveTo} from '../utils';
23
- import {Bezier} from './Bezier';
6
+ };
7
+ import { CubicBezierSegment } from '../curves';
8
+ import { computed, vector2Signal } from '../decorators';
9
+ import { bezierCurveTo, lineTo, moveTo } from '../utils';
10
+ import { Bezier } from './Bezier';
24
11
  /**
25
12
  * A node for drawing a cubic Bézier curve.
26
13
  *
@@ -51,34 +38,44 @@ import {Bezier} from './Bezier';
51
38
  * ```
52
39
  */
53
40
  export class CubicBezier extends Bezier {
54
- constructor(props) {
55
- super(props);
56
- }
57
- segment() {
58
- return new CubicBezierSegment(this.p0(), this.p1(), this.p2(), this.p3());
59
- }
60
- overlayInfo(matrix) {
61
- const [p0, p1, p2, p3] = this.segment().transformPoints(matrix);
62
- const curvePath = new Path2D();
63
- moveTo(curvePath, p0);
64
- bezierCurveTo(curvePath, p1, p2, p3);
65
- const handleLinesPath = new Path2D();
66
- moveTo(handleLinesPath, p0);
67
- lineTo(handleLinesPath, p1);
68
- moveTo(handleLinesPath, p2);
69
- lineTo(handleLinesPath, p3);
70
- return {
71
- curve: curvePath,
72
- startPoint: p0,
73
- endPoint: p3,
74
- controlPoints: [p1, p2],
75
- handleLines: handleLinesPath,
76
- };
77
- }
41
+ constructor(props) {
42
+ super(props);
43
+ }
44
+ segment() {
45
+ return new CubicBezierSegment(this.p0(), this.p1(), this.p2(), this.p3());
46
+ }
47
+ overlayInfo(matrix) {
48
+ const [p0, p1, p2, p3] = this.segment().transformPoints(matrix);
49
+ const curvePath = new Path2D();
50
+ moveTo(curvePath, p0);
51
+ bezierCurveTo(curvePath, p1, p2, p3);
52
+ const handleLinesPath = new Path2D();
53
+ moveTo(handleLinesPath, p0);
54
+ lineTo(handleLinesPath, p1);
55
+ moveTo(handleLinesPath, p2);
56
+ lineTo(handleLinesPath, p3);
57
+ return {
58
+ curve: curvePath,
59
+ startPoint: p0,
60
+ endPoint: p3,
61
+ controlPoints: [p1, p2],
62
+ handleLines: handleLinesPath,
63
+ };
64
+ }
78
65
  }
79
- __decorate([vector2Signal('p0')], CubicBezier.prototype, 'p0', void 0);
80
- __decorate([vector2Signal('p1')], CubicBezier.prototype, 'p1', void 0);
81
- __decorate([vector2Signal('p2')], CubicBezier.prototype, 'p2', void 0);
82
- __decorate([vector2Signal('p3')], CubicBezier.prototype, 'p3', void 0);
83
- __decorate([computed()], CubicBezier.prototype, 'segment', null);
84
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQ3ViaWNCZXppZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL2NvbXBvbmVudHMvQ3ViaWNCZXppZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7O0FBQ0EsT0FBTyxFQUFDLGtCQUFrQixFQUFDLE1BQU0sV0FBVyxDQUFDO0FBRTdDLE9BQU8sRUFBQyxRQUFRLEVBQUUsYUFBYSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3RELE9BQU8sRUFBQyxhQUFhLEVBQUUsTUFBTSxFQUFFLE1BQU0sRUFBQyxNQUFNLFVBQVUsQ0FBQztBQUN2RCxPQUFPLEVBQUMsTUFBTSxFQUFvQixNQUFNLFVBQVUsQ0FBQztBQXFCbkQ7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7R0E0Qkc7QUFDSCxNQUFNLE9BQU8sV0FBWSxTQUFRLE1BQU07SUF5QnJDLFlBQW1CLEtBQXVCO1FBQ3hDLEtBQUssQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUNmLENBQUM7SUFHUyxPQUFPO1FBQ2YsT0FBTyxJQUFJLGtCQUFrQixDQUFDLElBQUksQ0FBQyxFQUFFLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDO0lBQzVFLENBQUM7SUFFUyxXQUFXLENBQUMsTUFBaUI7UUFDckMsTUFBTSxDQUFDLEVBQUUsRUFBRSxFQUFFLEVBQUUsRUFBRSxFQUFFLEVBQUUsQ0FBQyxHQUFHLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQyxlQUFlLENBQUMsTUFBTSxDQUFDLENBQUM7UUFFaEUsTUFBTSxTQUFTLEdBQUcsSUFBSSxNQUFNLEVBQUUsQ0FBQztRQUMvQixNQUFNLENBQUMsU0FBUyxFQUFFLEVBQUUsQ0FBQyxDQUFDO1FBQ3RCLGFBQWEsQ0FBQyxTQUFTLEVBQUUsRUFBRSxFQUFFLEVBQUUsRUFBRSxFQUFFLENBQUMsQ0FBQztRQUVyQyxNQUFNLGVBQWUsR0FBRyxJQUFJLE1BQU0sRUFBRSxDQUFDO1FBQ3JDLE1BQU0sQ0FBQyxlQUFlLEVBQUUsRUFBRSxDQUFDLENBQUM7UUFDNUIsTUFBTSxDQUFDLGVBQWUsRUFBRSxFQUFFLENBQUMsQ0FBQztRQUM1QixNQUFNLENBQUMsZUFBZSxFQUFFLEVBQUUsQ0FBQyxDQUFDO1FBQzVCLE1BQU0sQ0FBQyxlQUFlLEVBQUUsRUFBRSxDQUFDLENBQUM7UUFFNUIsT0FBTztZQUNMLEtBQUssRUFBRSxTQUFTO1lBQ2hCLFVBQVUsRUFBRSxFQUFFO1lBQ2QsUUFBUSxFQUFFLEVBQUU7WUFDWixhQUFhLEVBQUUsQ0FBQyxFQUFFLEVBQUUsRUFBRSxDQUFDO1lBQ3ZCLFdBQVcsRUFBRSxlQUFlO1NBQzdCLENBQUM7SUFDSixDQUFDO0NBQ0Y7QUFsRHlCO0lBRHZCLGFBQWEsQ0FBQyxJQUFJLENBQUM7dUNBQzRCO0FBTXhCO0lBRHZCLGFBQWEsQ0FBQyxJQUFJLENBQUM7dUNBQzRCO0FBTXhCO0lBRHZCLGFBQWEsQ0FBQyxJQUFJLENBQUM7dUNBQzRCO0FBTXhCO0lBRHZCLGFBQWEsQ0FBQyxJQUFJLENBQUM7dUNBQzRCO0FBT3RDO0lBRFQsUUFBUSxFQUFFOzBDQUdWIn0=
66
+ __decorate([
67
+ vector2Signal('p0')
68
+ ], CubicBezier.prototype, "p0", void 0);
69
+ __decorate([
70
+ vector2Signal('p1')
71
+ ], CubicBezier.prototype, "p1", void 0);
72
+ __decorate([
73
+ vector2Signal('p2')
74
+ ], CubicBezier.prototype, "p2", void 0);
75
+ __decorate([
76
+ vector2Signal('p3')
77
+ ], CubicBezier.prototype, "p3", void 0);
78
+ __decorate([
79
+ computed()
80
+ ], CubicBezier.prototype, "segment", null);
81
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQ3ViaWNCZXppZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL2NvbXBvbmVudHMvQ3ViaWNCZXppZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7O0FBQ0EsT0FBTyxFQUFDLGtCQUFrQixFQUFDLE1BQU0sV0FBVyxDQUFDO0FBRTdDLE9BQU8sRUFBQyxRQUFRLEVBQUUsYUFBYSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3RELE9BQU8sRUFBQyxhQUFhLEVBQUUsTUFBTSxFQUFFLE1BQU0sRUFBQyxNQUFNLFVBQVUsQ0FBQztBQUN2RCxPQUFPLEVBQUMsTUFBTSxFQUFvQixNQUFNLFVBQVUsQ0FBQztBQXFCbkQ7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7R0E0Qkc7QUFDSCxNQUFNLE9BQU8sV0FBWSxTQUFRLE1BQU07SUF5QnJDLFlBQW1CLEtBQXVCO1FBQ3hDLEtBQUssQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUNmLENBQUM7SUFHUyxPQUFPO1FBQ2YsT0FBTyxJQUFJLGtCQUFrQixDQUFDLElBQUksQ0FBQyxFQUFFLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRSxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDO0lBQzVFLENBQUM7SUFFUyxXQUFXLENBQUMsTUFBaUI7UUFDckMsTUFBTSxDQUFDLEVBQUUsRUFBRSxFQUFFLEVBQUUsRUFBRSxFQUFFLEVBQUUsQ0FBQyxHQUFHLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQyxlQUFlLENBQUMsTUFBTSxDQUFDLENBQUM7UUFFaEUsTUFBTSxTQUFTLEdBQUcsSUFBSSxNQUFNLEVBQUUsQ0FBQztRQUMvQixNQUFNLENBQUMsU0FBUyxFQUFFLEVBQUUsQ0FBQyxDQUFDO1FBQ3RCLGFBQWEsQ0FBQyxTQUFTLEVBQUUsRUFBRSxFQUFFLEVBQUUsRUFBRSxFQUFFLENBQUMsQ0FBQztRQUVyQyxNQUFNLGVBQWUsR0FBRyxJQUFJLE1BQU0sRUFBRSxDQUFDO1FBQ3JDLE1BQU0sQ0FBQyxlQUFlLEVBQUUsRUFBRSxDQUFDLENBQUM7UUFDNUIsTUFBTSxDQUFDLGVBQWUsRUFBRSxFQUFFLENBQUMsQ0FBQztRQUM1QixNQUFNLENBQUMsZUFBZSxFQUFFLEVBQUUsQ0FBQyxDQUFDO1FBQzVCLE1BQU0sQ0FBQyxlQUFlLEVBQUUsRUFBRSxDQUFDLENBQUM7UUFFNUIsT0FBTztZQUNMLEtBQUssRUFBRSxTQUFTO1lBQ2hCLFVBQVUsRUFBRSxFQUFFO1lBQ2QsUUFBUSxFQUFFLEVBQUU7WUFDWixhQUFhLEVBQUUsQ0FBQyxFQUFFLEVBQUUsRUFBRSxDQUFDO1lBQ3ZCLFdBQVcsRUFBRSxlQUFlO1NBQzdCLENBQUM7SUFDSixDQUFDO0NBQ0Y7QUFsRHlCO0lBRHZCLGFBQWEsQ0FBQyxJQUFJLENBQUM7dUNBQzRCO0FBTXhCO0lBRHZCLGFBQWEsQ0FBQyxJQUFJLENBQUM7dUNBQzRCO0FBTXhCO0lBRHZCLGFBQWEsQ0FBQyxJQUFJLENBQUM7dUNBQzRCO0FBTXhCO0lBRHZCLGFBQWEsQ0FBQyxJQUFJLENBQUM7dUNBQzRCO0FBT3RDO0lBRFQsUUFBUSxFQUFFOzBDQUdWIn0=
@@ -1,212 +1,202 @@
1
- import {
2
- BBox,
3
- SerializedVector2,
4
- SignalValue,
5
- SimpleSignal,
6
- Vector2,
7
- } from '@revideo/core';
8
- import {CurveDrawingInfo} from '../curves/CurveDrawingInfo';
9
- import {CurvePoint} from '../curves/CurvePoint';
10
- import {CurveProfile} from '../curves/CurveProfile';
11
- import {DesiredLength} from '../partials';
12
- import {Shape, ShapeProps} from './Shape';
1
+ import { BBox, SerializedVector2, SignalValue, SimpleSignal, Vector2 } from '@revideo/core';
2
+ import { CurveDrawingInfo } from '../curves/CurveDrawingInfo';
3
+ import { CurvePoint } from '../curves/CurvePoint';
4
+ import { CurveProfile } from '../curves/CurveProfile';
5
+ import { DesiredLength } from '../partials';
6
+ import { Shape, ShapeProps } from './Shape';
13
7
  export interface CurveProps extends ShapeProps {
14
- /**
15
- * {@inheritDoc Curve.closed}
16
- */
17
- closed?: SignalValue<boolean>;
18
- /**
19
- * {@inheritDoc Curve.start}
20
- */
21
- start?: SignalValue<number>;
22
- /**
23
- * {@inheritDoc Curve.startOffset}
24
- */
25
- startOffset?: SignalValue<number>;
26
- /**
27
- * {@inheritDoc Curve.startArrow}
28
- */
29
- startArrow?: SignalValue<boolean>;
30
- /**
31
- * {@inheritDoc Curve.end}
32
- */
33
- end?: SignalValue<number>;
34
- /**
35
- * {@inheritDoc Curve.endOffset}
36
- */
37
- endOffset?: SignalValue<number>;
38
- /**
39
- * {@inheritDoc Curve.endArrow}
40
- */
41
- endArrow?: SignalValue<boolean>;
42
- /**
43
- * {@inheritDoc Curve.arrowSize}
44
- */
45
- arrowSize?: SignalValue<number>;
8
+ /**
9
+ * {@inheritDoc Curve.closed}
10
+ */
11
+ closed?: SignalValue<boolean>;
12
+ /**
13
+ * {@inheritDoc Curve.start}
14
+ */
15
+ start?: SignalValue<number>;
16
+ /**
17
+ * {@inheritDoc Curve.startOffset}
18
+ */
19
+ startOffset?: SignalValue<number>;
20
+ /**
21
+ * {@inheritDoc Curve.startArrow}
22
+ */
23
+ startArrow?: SignalValue<boolean>;
24
+ /**
25
+ * {@inheritDoc Curve.end}
26
+ */
27
+ end?: SignalValue<number>;
28
+ /**
29
+ * {@inheritDoc Curve.endOffset}
30
+ */
31
+ endOffset?: SignalValue<number>;
32
+ /**
33
+ * {@inheritDoc Curve.endArrow}
34
+ */
35
+ endArrow?: SignalValue<boolean>;
36
+ /**
37
+ * {@inheritDoc Curve.arrowSize}
38
+ */
39
+ arrowSize?: SignalValue<number>;
46
40
  }
47
41
  export declare abstract class Curve extends Shape {
48
- /**
49
- * Whether the curve should be closed.
50
- *
51
- * @remarks
52
- * Closed curves have their start and end points connected.
53
- */
54
- readonly closed: SimpleSignal<boolean, this>;
55
- /**
56
- * A percentage from the start before which the curve should be clipped.
57
- *
58
- * @remarks
59
- * The portion of the curve that comes before the given percentage will be
60
- * made invisible.
61
- *
62
- * This property is usefully for animating the curve appearing on the screen.
63
- * The value of `0` means the very start of the curve (accounting for the
64
- * {@link startOffset}) while `1` means the very end (accounting for the
65
- * {@link endOffset}).
66
- */
67
- readonly start: SimpleSignal<number, this>;
68
- /**
69
- * The offset in pixels from the start of the curve.
70
- *
71
- * @remarks
72
- * This property lets you specify where along the defined curve the actual
73
- * visible portion starts. For example, setting it to `20` will make the first
74
- * 20 pixels of the curve invisible.
75
- *
76
- * This property is useful for trimming the curve using a fixed distance.
77
- * If you want to animate the curve appearing on the screen, use {@link start}
78
- * instead.
79
- */
80
- readonly startOffset: SimpleSignal<number, this>;
81
- /**
82
- * Whether to display an arrow at the start of the visible curve.
83
- *
84
- * @remarks
85
- * Use {@link arrowSize} to control the size of the arrow.
86
- */
87
- readonly startArrow: SimpleSignal<boolean, this>;
88
- /**
89
- * A percentage from the start after which the curve should be clipped.
90
- *
91
- * @remarks
92
- * The portion of the curve that comes after the given percentage will be
93
- * made invisible.
94
- *
95
- * This property is usefully for animating the curve appearing on the screen.
96
- * The value of `0` means the very start of the curve (accounting for the
97
- * {@link startOffset}) while `1` means the very end (accounting for the
98
- * {@link endOffset}).
99
- */
100
- readonly end: SimpleSignal<number, this>;
101
- /**
102
- * The offset in pixels from the end of the curve.
103
- *
104
- * @remarks
105
- * This property lets you specify where along the defined curve the actual
106
- * visible portion ends. For example, setting it to `20` will make the last
107
- * 20 pixels of the curve invisible.
108
- *
109
- * This property is useful for trimming the curve using a fixed distance.
110
- * If you want to animate the curve appearing on the screen, use {@link end}
111
- * instead.
112
- */
113
- readonly endOffset: SimpleSignal<number, this>;
114
- /**
115
- * Whether to display an arrow at the end of the visible curve.
116
- *
117
- * @remarks
118
- * Use {@link arrowSize} to control the size of the arrow.
119
- */
120
- readonly endArrow: SimpleSignal<boolean, this>;
121
- /**
122
- * Controls the size of the end and start arrows.
123
- *
124
- * @remarks
125
- * To make the arrows visible make sure to enable {@link startArrow} and/or
126
- * {@link endArrow}.
127
- */
128
- readonly arrowSize: SimpleSignal<number, this>;
129
- protected canHaveSubpath: boolean;
130
- protected desiredSize(): SerializedVector2<DesiredLength>;
131
- constructor(props: CurveProps);
132
- protected abstract childrenBBox(): BBox;
133
- abstract profile(): CurveProfile;
134
- /**
135
- * Convert a percentage along the curve to a distance.
136
- *
137
- * @remarks
138
- * The returned distance is given in relation to the full curve, not
139
- * accounting for {@link startOffset} and {@link endOffset}.
140
- *
141
- * @param value - The percentage along the curve.
142
- */
143
- percentageToDistance(value: number): number;
144
- /**
145
- * Convert a distance along the curve to a percentage.
146
- *
147
- * @remarks
148
- * The distance should be given in relation to the full curve, not
149
- * accounting for {@link startOffset} and {@link endOffset}.
150
- *
151
- * @param value - The distance along the curve.
152
- */
153
- distanceToPercentage(value: number): number;
154
- /**
155
- * The base arc length of this curve.
156
- *
157
- * @remarks
158
- * This is the entire length of this curve, not accounting for
159
- * {@link startOffset | the offsets}.
160
- */
161
- baseArcLength(): number;
162
- /**
163
- * The offset arc length of this curve.
164
- *
165
- * @remarks
166
- * This is the length of the curve that accounts for
167
- * {@link startOffset | the offsets}.
168
- */
169
- offsetArcLength(): number;
170
- /**
171
- * The visible arc length of this curve.
172
- *
173
- * @remarks
174
- * This arc length accounts for both the offset and the {@link start} and
175
- * {@link end} properties.
176
- */
177
- arcLength(): number;
178
- /**
179
- * The percentage of the curve that's currently visible.
180
- *
181
- * @remarks
182
- * The returned value is the ratio between the visible length (as defined by
183
- * {@link start} and {@link end}) and the offset length of the curve.
184
- */
185
- completion(): number;
186
- protected processSubpath(
187
- _path: Path2D,
188
- _startPoint: Vector2 | null,
189
- _endPoint: Vector2 | null,
190
- ): void;
191
- protected curveDrawingInfo(): CurveDrawingInfo;
192
- protected getPointAtDistance(value: number): CurvePoint;
193
- getPointAtPercentage(value: number): CurvePoint;
194
- protected getComputedLayout(): BBox;
195
- protected offsetComputedLayout(box: BBox): BBox;
196
- protected getPath(): Path2D;
197
- protected getCacheBBox(): BBox;
198
- protected lineWidthCoefficient(): number;
199
- /**
200
- * Check if the path requires a profile.
201
- *
202
- * @remarks
203
- * The profile is only required if certain features are used. Otherwise, the
204
- * profile generation can be skipped, and the curve can be drawn directly
205
- * using the 2D context.
206
- */
207
- protected requiresProfile(): boolean;
208
- protected drawShape(context: CanvasRenderingContext2D): void;
209
- private drawArrows;
210
- private drawArrow;
42
+ /**
43
+ * Whether the curve should be closed.
44
+ *
45
+ * @remarks
46
+ * Closed curves have their start and end points connected.
47
+ */
48
+ readonly closed: SimpleSignal<boolean, this>;
49
+ /**
50
+ * A percentage from the start before which the curve should be clipped.
51
+ *
52
+ * @remarks
53
+ * The portion of the curve that comes before the given percentage will be
54
+ * made invisible.
55
+ *
56
+ * This property is usefully for animating the curve appearing on the screen.
57
+ * The value of `0` means the very start of the curve (accounting for the
58
+ * {@link startOffset}) while `1` means the very end (accounting for the
59
+ * {@link endOffset}).
60
+ */
61
+ readonly start: SimpleSignal<number, this>;
62
+ /**
63
+ * The offset in pixels from the start of the curve.
64
+ *
65
+ * @remarks
66
+ * This property lets you specify where along the defined curve the actual
67
+ * visible portion starts. For example, setting it to `20` will make the first
68
+ * 20 pixels of the curve invisible.
69
+ *
70
+ * This property is useful for trimming the curve using a fixed distance.
71
+ * If you want to animate the curve appearing on the screen, use {@link start}
72
+ * instead.
73
+ */
74
+ readonly startOffset: SimpleSignal<number, this>;
75
+ /**
76
+ * Whether to display an arrow at the start of the visible curve.
77
+ *
78
+ * @remarks
79
+ * Use {@link arrowSize} to control the size of the arrow.
80
+ */
81
+ readonly startArrow: SimpleSignal<boolean, this>;
82
+ /**
83
+ * A percentage from the start after which the curve should be clipped.
84
+ *
85
+ * @remarks
86
+ * The portion of the curve that comes after the given percentage will be
87
+ * made invisible.
88
+ *
89
+ * This property is usefully for animating the curve appearing on the screen.
90
+ * The value of `0` means the very start of the curve (accounting for the
91
+ * {@link startOffset}) while `1` means the very end (accounting for the
92
+ * {@link endOffset}).
93
+ */
94
+ readonly end: SimpleSignal<number, this>;
95
+ /**
96
+ * The offset in pixels from the end of the curve.
97
+ *
98
+ * @remarks
99
+ * This property lets you specify where along the defined curve the actual
100
+ * visible portion ends. For example, setting it to `20` will make the last
101
+ * 20 pixels of the curve invisible.
102
+ *
103
+ * This property is useful for trimming the curve using a fixed distance.
104
+ * If you want to animate the curve appearing on the screen, use {@link end}
105
+ * instead.
106
+ */
107
+ readonly endOffset: SimpleSignal<number, this>;
108
+ /**
109
+ * Whether to display an arrow at the end of the visible curve.
110
+ *
111
+ * @remarks
112
+ * Use {@link arrowSize} to control the size of the arrow.
113
+ */
114
+ readonly endArrow: SimpleSignal<boolean, this>;
115
+ /**
116
+ * Controls the size of the end and start arrows.
117
+ *
118
+ * @remarks
119
+ * To make the arrows visible make sure to enable {@link startArrow} and/or
120
+ * {@link endArrow}.
121
+ */
122
+ readonly arrowSize: SimpleSignal<number, this>;
123
+ protected canHaveSubpath: boolean;
124
+ protected desiredSize(): SerializedVector2<DesiredLength>;
125
+ constructor(props: CurveProps);
126
+ protected abstract childrenBBox(): BBox;
127
+ abstract profile(): CurveProfile;
128
+ /**
129
+ * Convert a percentage along the curve to a distance.
130
+ *
131
+ * @remarks
132
+ * The returned distance is given in relation to the full curve, not
133
+ * accounting for {@link startOffset} and {@link endOffset}.
134
+ *
135
+ * @param value - The percentage along the curve.
136
+ */
137
+ percentageToDistance(value: number): number;
138
+ /**
139
+ * Convert a distance along the curve to a percentage.
140
+ *
141
+ * @remarks
142
+ * The distance should be given in relation to the full curve, not
143
+ * accounting for {@link startOffset} and {@link endOffset}.
144
+ *
145
+ * @param value - The distance along the curve.
146
+ */
147
+ distanceToPercentage(value: number): number;
148
+ /**
149
+ * The base arc length of this curve.
150
+ *
151
+ * @remarks
152
+ * This is the entire length of this curve, not accounting for
153
+ * {@link startOffset | the offsets}.
154
+ */
155
+ baseArcLength(): number;
156
+ /**
157
+ * The offset arc length of this curve.
158
+ *
159
+ * @remarks
160
+ * This is the length of the curve that accounts for
161
+ * {@link startOffset | the offsets}.
162
+ */
163
+ offsetArcLength(): number;
164
+ /**
165
+ * The visible arc length of this curve.
166
+ *
167
+ * @remarks
168
+ * This arc length accounts for both the offset and the {@link start} and
169
+ * {@link end} properties.
170
+ */
171
+ arcLength(): number;
172
+ /**
173
+ * The percentage of the curve that's currently visible.
174
+ *
175
+ * @remarks
176
+ * The returned value is the ratio between the visible length (as defined by
177
+ * {@link start} and {@link end}) and the offset length of the curve.
178
+ */
179
+ completion(): number;
180
+ protected processSubpath(_path: Path2D, _startPoint: Vector2 | null, _endPoint: Vector2 | null): void;
181
+ protected curveDrawingInfo(): CurveDrawingInfo;
182
+ protected getPointAtDistance(value: number): CurvePoint;
183
+ getPointAtPercentage(value: number): CurvePoint;
184
+ protected getComputedLayout(): BBox;
185
+ protected offsetComputedLayout(box: BBox): BBox;
186
+ protected getPath(): Path2D;
187
+ protected getCacheBBox(): BBox;
188
+ protected lineWidthCoefficient(): number;
189
+ /**
190
+ * Check if the path requires a profile.
191
+ *
192
+ * @remarks
193
+ * The profile is only required if certain features are used. Otherwise, the
194
+ * profile generation can be skipped, and the curve can be drawn directly
195
+ * using the 2D context.
196
+ */
197
+ protected requiresProfile(): boolean;
198
+ protected drawShape(context: CanvasRenderingContext2D): void;
199
+ private drawArrows;
200
+ private drawArrow;
211
201
  }
212
- //# sourceMappingURL=Curve.d.ts.map
202
+ //# sourceMappingURL=Curve.d.ts.map