@revideo/2d 0.4.7-two.1024 → 0.4.8-alpha.1032

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 (170) hide show
  1. package/editor/editor/tsconfig.build.tsbuildinfo +1 -1
  2. package/editor/index.js +151 -380
  3. package/editor/index.js.map +1 -1
  4. package/lib/code/CodeCursor.d.ts +74 -74
  5. package/lib/code/CodeDiffer.d.ts +16 -21
  6. package/lib/code/CodeDiffer.js +41 -39
  7. package/lib/code/CodeFragment.d.ts +8 -16
  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 +8 -12
  12. package/lib/code/CodeMetrics.js +24 -26
  13. package/lib/code/CodeRange.d.ts +5 -21
  14. package/lib/code/CodeRange.js +124 -131
  15. package/lib/code/CodeScope.d.ts +8 -18
  16. package/lib/code/CodeSelection.d.ts +4 -9
  17. package/lib/code/CodeSelection.js +8 -8
  18. package/lib/code/CodeSignal.d.ts +47 -74
  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/diff.d.ts +9 -12
  25. package/lib/code/diff.js +205 -218
  26. package/lib/code/extractRange.d.ts +4 -7
  27. package/lib/code/extractRange.js +71 -79
  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 +90 -95
  33. package/lib/components/Code.d.ts +211 -244
  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 +198 -208
  37. package/lib/components/Grid.d.ts +42 -47
  38. package/lib/components/Icon.d.ts +50 -55
  39. package/lib/components/Img.d.ts +79 -86
  40. package/lib/components/Knot.d.ts +78 -97
  41. package/lib/components/Latex.d.ts +12 -12
  42. package/lib/components/Layout.d.ts +413 -455
  43. package/lib/components/Line.d.ts +49 -61
  44. package/lib/components/Media.d.ts +37 -37
  45. package/lib/components/Node.d.ts +1 -1
  46. package/lib/components/Path.d.ts +1 -1
  47. package/lib/components/Polygon.d.ts +55 -60
  48. package/lib/components/QuadBezier.d.ts +29 -29
  49. package/lib/components/Ray.d.ts +28 -28
  50. package/lib/components/Rect.d.ts +108 -115
  51. package/lib/components/SVG.d.ts +1 -1
  52. package/lib/components/Shape.d.ts +1 -1
  53. package/lib/components/Spline.d.ts +40 -46
  54. package/lib/components/Txt.d.ts +44 -55
  55. package/lib/components/TxtLeaf.d.ts +16 -20
  56. package/lib/components/Video.d.ts +1 -0
  57. package/lib/components/Video.d.ts.map +1 -1
  58. package/lib/components/Video.js +9 -3
  59. package/lib/components/View2D.d.ts +22 -22
  60. package/lib/components/index.d.ts +2 -1
  61. package/lib/components/index.d.ts.map +1 -1
  62. package/lib/components/index.js +2 -1
  63. package/lib/components/types.d.ts +9 -22
  64. package/lib/curves/ArcSegment.d.ts +24 -36
  65. package/lib/curves/CircleSegment.d.ts +16 -26
  66. package/lib/curves/CubicBezierSegment.d.ts +13 -18
  67. package/lib/curves/CurveDrawingInfo.d.ts +9 -9
  68. package/lib/curves/CurvePoint.d.ts +13 -13
  69. package/lib/curves/CurveProfile.d.ts +5 -5
  70. package/lib/curves/CurveProfile.js +1 -1
  71. package/lib/curves/KnotInfo.d.ts +8 -8
  72. package/lib/curves/LineSegment.d.ts +14 -19
  73. package/lib/curves/Polynomial.d.ts +110 -110
  74. package/lib/curves/Polynomial2D.d.ts +20 -20
  75. package/lib/curves/PolynomialSegment.d.ts +37 -42
  76. package/lib/curves/QuadBezierSegment.d.ts +12 -12
  77. package/lib/curves/Segment.d.ts +7 -12
  78. package/lib/curves/UniformPolynomialCurveSampler.d.ts +34 -34
  79. package/lib/curves/createCurveProfileLerp.d.ts +6 -17
  80. package/lib/curves/getBezierSplineProfile.d.ts +4 -8
  81. package/lib/curves/getCircleProfile.d.ts +4 -10
  82. package/lib/curves/getPathProfile.d.ts +2 -2
  83. package/lib/curves/getPointAtDistance.d.ts +4 -7
  84. package/lib/curves/getPolylineProfile.d.ts +4 -8
  85. package/lib/curves/getRectProfile.d.ts +4 -9
  86. package/lib/curves/index.d.ts +1 -1
  87. package/lib/curves/index.js +1 -1
  88. package/lib/decorators/canvasStyleSignal.d.ts +3 -3
  89. package/lib/decorators/colorSignal.d.ts +1 -1
  90. package/lib/decorators/compound.d.ts +2 -4
  91. package/lib/decorators/computed.d.ts +1 -1
  92. package/lib/decorators/defaultStyle.d.ts +2 -5
  93. package/lib/decorators/filtersSignal.d.ts +8 -28
  94. package/lib/decorators/index.d.ts +1 -1
  95. package/lib/decorators/index.js +1 -1
  96. package/lib/decorators/initializers.d.ts +2 -5
  97. package/lib/decorators/initializers.js +19 -18
  98. package/lib/decorators/nodeName.d.ts +1 -1
  99. package/lib/decorators/nodeName.js +4 -4
  100. package/lib/decorators/signal.d.ts +20 -40
  101. package/lib/decorators/spacingSignal.d.ts +1 -1
  102. package/lib/decorators/vector2Signal.d.ts +7 -13
  103. package/lib/index.d.ts +1 -1
  104. package/lib/index.js +1 -1
  105. package/lib/jsx-dev-runtime.d.ts +3 -3
  106. package/lib/jsx-dev-runtime.js +3 -3
  107. package/lib/jsx-runtime.d.ts +9 -19
  108. package/lib/jsx-runtime.js +18 -18
  109. package/lib/partials/Filter.d.ts +16 -24
  110. package/lib/partials/Gradient.d.ts +24 -30
  111. package/lib/partials/Pattern.d.ts +9 -14
  112. package/lib/partials/ShaderConfig.d.ts +74 -81
  113. package/lib/partials/index.d.ts +1 -1
  114. package/lib/partials/index.js +1 -1
  115. package/lib/partials/types.d.ts +6 -19
  116. package/lib/scenes/Scene2D.d.ts +24 -42
  117. package/lib/scenes/Scene2D.d.ts.map +1 -1
  118. package/lib/scenes/Scene2D.js +10 -2
  119. package/lib/scenes/index.d.ts +1 -1
  120. package/lib/scenes/index.js +1 -1
  121. package/lib/scenes/makeScene2D.d.ts +5 -7
  122. package/lib/scenes/useScene2D.d.ts +2 -2
  123. package/lib/tsconfig.build.tsbuildinfo +1 -1
  124. package/lib/utils/diff.d.ts +18 -25
  125. package/lib/utils/diff.js +87 -84
  126. package/lib/utils/index.d.ts +1 -1
  127. package/lib/utils/index.js +1 -1
  128. package/lib/utils/is.d.ts +2 -4
  129. package/lib/utils/is.js +2 -2
  130. package/lib/utils/makeSignalExtensions.d.ts +4 -11
  131. package/lib/utils/video/mp4-parser-manager.d.ts +1 -0
  132. package/lib/utils/video/mp4-parser-manager.d.ts.map +1 -1
  133. package/lib/utils/video/mp4-parser-manager.js +21 -4
  134. package/lib/utils/video/parser/index.d.ts +2 -0
  135. package/lib/utils/video/parser/index.d.ts.map +1 -0
  136. package/lib/utils/video/parser/index.js +2 -0
  137. package/lib/utils/video/parser/parser.d.ts +21 -0
  138. package/lib/utils/video/parser/parser.d.ts.map +1 -0
  139. package/lib/utils/video/parser/parser.js +168 -0
  140. package/lib/utils/video/parser/sampler.d.ts +16 -0
  141. package/lib/utils/video/parser/sampler.d.ts.map +1 -0
  142. package/lib/utils/video/parser/sampler.js +56 -0
  143. package/lib/utils/video/parser/segment.d.ts +44 -0
  144. package/lib/utils/video/parser/segment.d.ts.map +1 -0
  145. package/lib/utils/video/parser/segment.js +195 -0
  146. package/lib/utils/video/parser/sink.d.ts +9 -0
  147. package/lib/utils/video/parser/sink.d.ts.map +1 -0
  148. package/lib/utils/video/parser/sink.js +22 -0
  149. package/lib/utils/video/parser/utils.d.ts +10 -0
  150. package/lib/utils/video/parser/utils.d.ts.map +1 -0
  151. package/lib/utils/video/parser/utils.js +22 -0
  152. package/package.json +4 -4
  153. package/src/lib/components/Video.ts +9 -2
  154. package/src/lib/components/index.ts +1 -0
  155. package/src/lib/scenes/Scene2D.ts +11 -1
  156. package/src/lib/utils/video/mp4-parser-manager.ts +24 -5
  157. package/src/lib/utils/video/parser/index.ts +1 -0
  158. package/src/lib/utils/video/parser/parser.ts +256 -0
  159. package/src/lib/utils/video/parser/sampler.ts +72 -0
  160. package/src/lib/utils/video/parser/segment.ts +252 -0
  161. package/src/lib/utils/video/parser/sink.ts +29 -0
  162. package/src/lib/utils/video/parser/utils.ts +31 -0
  163. package/lib/components/HlsVideo.d.ts +0 -62
  164. package/lib/components/HlsVideo.d.ts.map +0 -1
  165. package/lib/components/HlsVideo.js +0 -169
  166. package/lib/tsconfig.tsbuildinfo +0 -1
  167. package/lib/utils/video/mp4-parser.d.ts +0 -63
  168. package/lib/utils/video/mp4-parser.d.ts.map +0 -1
  169. package/lib/utils/video/mp4-parser.js +0 -264
  170. package/src/lib/utils/video/mp4-parser.ts +0 -340
@@ -1,26 +1,26 @@
1
- import {PlaybackState, SimpleSignal} from '@revideo/core';
2
- import type {Node} from './Node';
3
- import {Rect, RectProps} from './Rect';
1
+ import { PlaybackState, SimpleSignal } from '@revideo/core';
2
+ import type { Node } from './Node';
3
+ import { Rect, RectProps } from './Rect';
4
4
  export interface View2DProps extends RectProps {
5
- assetHash: string;
5
+ assetHash: string;
6
6
  }
7
7
  export declare class View2D extends Rect {
8
- static shadowRoot: ShadowRoot;
9
- readonly playbackState: SimpleSignal<PlaybackState, this>;
10
- readonly globalTime: SimpleSignal<number, this>;
11
- readonly fps: SimpleSignal<number, this>;
12
- readonly assetHash: SimpleSignal<string, this>;
13
- constructor(props: View2DProps);
14
- dispose(): void;
15
- render(context: CanvasRenderingContext2D): Promise<void>;
16
- /**
17
- * Find a node by its key.
18
- *
19
- * @param key - The key of the node.
20
- */
21
- findKey<T extends Node = Node>(key: string): T | null;
22
- protected requestLayoutUpdate(): void;
23
- protected requestFontUpdate(): void;
24
- view(): View2D;
8
+ static shadowRoot: ShadowRoot;
9
+ readonly playbackState: SimpleSignal<PlaybackState, this>;
10
+ readonly globalTime: SimpleSignal<number, this>;
11
+ readonly fps: SimpleSignal<number, this>;
12
+ readonly assetHash: SimpleSignal<string, this>;
13
+ constructor(props: View2DProps);
14
+ dispose(): void;
15
+ render(context: CanvasRenderingContext2D): Promise<void>;
16
+ /**
17
+ * Find a node by its key.
18
+ *
19
+ * @param key - The key of the node.
20
+ */
21
+ findKey<T extends Node = Node>(key: string): T | null;
22
+ protected requestLayoutUpdate(): void;
23
+ protected requestFontUpdate(): void;
24
+ view(): View2D;
25
25
  }
26
- //# sourceMappingURL=View2D.d.ts.map
26
+ //# sourceMappingURL=View2D.d.ts.map
@@ -11,6 +11,7 @@ export * from './Knot';
11
11
  export * from './Latex';
12
12
  export * from './Layout';
13
13
  export * from './Line';
14
+ export * from './Media';
14
15
  export * from './Node';
15
16
  export * from './Path';
16
17
  export * from './Polygon';
@@ -24,4 +25,4 @@ export * from './Txt';
24
25
  export * from './Video';
25
26
  export * from './View2D';
26
27
  export * from './types';
27
- //# sourceMappingURL=index.d.ts.map
28
+ //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/lib/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,eAAe,CAAC;AAC9B,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/lib/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,eAAe,CAAC;AAC9B,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC"}
@@ -11,6 +11,7 @@ export * from './Knot';
11
11
  export * from './Latex';
12
12
  export * from './Layout';
13
13
  export * from './Line';
14
+ export * from './Media';
14
15
  export * from './Node';
15
16
  export * from './Path';
16
17
  export * from './Polygon';
@@ -24,4 +25,4 @@ export * from './Txt';
24
25
  export * from './Video';
25
26
  export * from './View2D';
26
27
  export * from './types';
27
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL2NvbXBvbmVudHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxlQUFlLENBQUM7QUFDOUIsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxPQUFPLENBQUM7QUFDdEIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxXQUFXLENBQUM7QUFDMUIsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxPQUFPLENBQUM7QUFDdEIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxPQUFPLENBQUM7QUFDdEIsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxPQUFPLENBQUM7QUFDdEIsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxTQUFTLENBQUMifQ==
28
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL2NvbXBvbmVudHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxlQUFlLENBQUM7QUFDOUIsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxPQUFPLENBQUM7QUFDdEIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxXQUFXLENBQUM7QUFDMUIsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxPQUFPLENBQUM7QUFDdEIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxPQUFPLENBQUM7QUFDdEIsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxPQUFPLENBQUM7QUFDdEIsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxTQUFTLENBQUMifQ==
@@ -1,30 +1,17 @@
1
- import type {ReferenceReceiver} from '@revideo/core';
2
- import type {Node} from './Node';
3
- export type ComponentChild =
4
- | Node
5
- | object
6
- | string
7
- | number
8
- | bigint
9
- | boolean
10
- | null
11
- | undefined;
1
+ import type { ReferenceReceiver } from '@revideo/core';
2
+ import type { Node } from './Node';
3
+ export type ComponentChild = Node | object | string | number | bigint | boolean | null | undefined;
12
4
  export type ComponentChildren = ComponentChild | ComponentChild[];
13
5
  export type NodeChildren = Node | Node[];
14
- export type PropsOf<T> =
15
- T extends NodeConstructor<infer P>
16
- ? P
17
- : T extends FunctionComponent<infer P>
18
- ? P
19
- : never;
6
+ export type PropsOf<T> = T extends NodeConstructor<infer P> ? P : T extends FunctionComponent<infer P> ? P : never;
20
7
  export interface JSXProps {
21
- children?: ComponentChildren;
22
- ref?: ReferenceReceiver<Node>;
8
+ children?: ComponentChildren;
9
+ ref?: ReferenceReceiver<Node>;
23
10
  }
24
11
  export interface FunctionComponent<T = any> {
25
- (props: T): Node | null;
12
+ (props: T): Node | null;
26
13
  }
27
14
  export interface NodeConstructor<TProps = any, TNode = Node> {
28
- new (props: TProps): TNode;
15
+ new (props: TProps): TNode;
29
16
  }
30
- //# sourceMappingURL=types.d.ts.map
17
+ //# sourceMappingURL=types.d.ts.map
@@ -1,38 +1,26 @@
1
- import {Vector2} from '@revideo/core';
2
- import {CurvePoint} from './CurvePoint';
3
- import {Segment} from './Segment';
1
+ import { Vector2 } from '@revideo/core';
2
+ import { CurvePoint } from './CurvePoint';
3
+ import { Segment } from './Segment';
4
4
  export declare class ArcSegment extends Segment {
5
- readonly startPoint: Vector2;
6
- readonly radius: Vector2;
7
- readonly xAxisRotationDegree: number;
8
- readonly largeArcFlag: number;
9
- readonly sweepFlag: number;
10
- readonly endPoint: Vector2;
11
- private static el;
12
- readonly center: Vector2;
13
- readonly startAngle: number;
14
- readonly deltaAngle: number;
15
- readonly xAxisRotation: number;
16
- private xAxisRotationMatrix;
17
- readonly points: Vector2[];
18
- private length;
19
- constructor(
20
- startPoint: Vector2,
21
- radius: Vector2,
22
- xAxisRotationDegree: number,
23
- largeArcFlag: number,
24
- sweepFlag: number,
25
- endPoint: Vector2,
26
- );
27
- getAnglePosition(angle: number): Vector2;
28
- getAngleDerivative(angle: number): Vector2;
29
- draw(
30
- context: CanvasRenderingContext2D | Path2D,
31
- start: number,
32
- end: number,
33
- move: boolean,
34
- ): [CurvePoint, CurvePoint];
35
- getPoint(distance: number): CurvePoint;
36
- get arcLength(): number;
5
+ readonly startPoint: Vector2;
6
+ readonly radius: Vector2;
7
+ readonly xAxisRotationDegree: number;
8
+ readonly largeArcFlag: number;
9
+ readonly sweepFlag: number;
10
+ readonly endPoint: Vector2;
11
+ private static el;
12
+ readonly center: Vector2;
13
+ readonly startAngle: number;
14
+ readonly deltaAngle: number;
15
+ readonly xAxisRotation: number;
16
+ private xAxisRotationMatrix;
17
+ readonly points: Vector2[];
18
+ private length;
19
+ constructor(startPoint: Vector2, radius: Vector2, xAxisRotationDegree: number, largeArcFlag: number, sweepFlag: number, endPoint: Vector2);
20
+ getAnglePosition(angle: number): Vector2;
21
+ getAngleDerivative(angle: number): Vector2;
22
+ draw(context: CanvasRenderingContext2D | Path2D, start: number, end: number, move: boolean): [CurvePoint, CurvePoint];
23
+ getPoint(distance: number): CurvePoint;
24
+ get arcLength(): number;
37
25
  }
38
- //# sourceMappingURL=ArcSegment.d.ts.map
26
+ //# sourceMappingURL=ArcSegment.d.ts.map
@@ -1,28 +1,18 @@
1
- import {Vector2} from '@revideo/core';
2
- import {CurvePoint} from './CurvePoint';
3
- import {Segment} from './Segment';
1
+ import { Vector2 } from '@revideo/core';
2
+ import { CurvePoint } from './CurvePoint';
3
+ import { Segment } from './Segment';
4
4
  export declare class CircleSegment extends Segment {
5
- private center;
6
- private radius;
7
- private from;
8
- private to;
9
- private counter;
10
- private readonly length;
11
- private readonly angle;
12
- readonly points: Vector2[];
13
- constructor(
14
- center: Vector2,
15
- radius: number,
16
- from: Vector2,
17
- to: Vector2,
18
- counter: boolean,
19
- );
20
- get arcLength(): number;
21
- draw(
22
- context: CanvasRenderingContext2D | Path2D,
23
- from: number,
24
- to: number,
25
- ): [CurvePoint, CurvePoint];
26
- getPoint(distance: number): CurvePoint;
5
+ private center;
6
+ private radius;
7
+ private from;
8
+ private to;
9
+ private counter;
10
+ private readonly length;
11
+ private readonly angle;
12
+ readonly points: Vector2[];
13
+ constructor(center: Vector2, radius: number, from: Vector2, to: Vector2, counter: boolean);
14
+ get arcLength(): number;
15
+ draw(context: CanvasRenderingContext2D | Path2D, from: number, to: number): [CurvePoint, CurvePoint];
16
+ getPoint(distance: number): CurvePoint;
27
17
  }
28
- //# sourceMappingURL=CircleSegment.d.ts.map
18
+ //# sourceMappingURL=CircleSegment.d.ts.map
@@ -1,23 +1,18 @@
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 cubic Bézier curve.
5
5
  */
6
6
  export declare class CubicBezierSegment extends PolynomialSegment {
7
- readonly p0: Vector2;
8
- readonly p1: Vector2;
9
- readonly p2: Vector2;
10
- readonly p3: Vector2;
11
- private static el;
12
- get points(): Vector2[];
13
- constructor(p0: Vector2, p1: Vector2, p2: Vector2, p3: Vector2);
14
- split(t: number): [PolynomialSegment, PolynomialSegment];
15
- protected doDraw(context: CanvasRenderingContext2D | Path2D): void;
16
- protected static getLength(
17
- p0: Vector2,
18
- p1: Vector2,
19
- p2: Vector2,
20
- p3: Vector2,
21
- ): number;
7
+ readonly p0: Vector2;
8
+ readonly p1: Vector2;
9
+ readonly p2: Vector2;
10
+ readonly p3: Vector2;
11
+ private static el;
12
+ get points(): Vector2[];
13
+ constructor(p0: Vector2, p1: Vector2, p2: Vector2, p3: Vector2);
14
+ split(t: number): [PolynomialSegment, PolynomialSegment];
15
+ protected doDraw(context: CanvasRenderingContext2D | Path2D): void;
16
+ protected static getLength(p0: Vector2, p1: Vector2, p2: Vector2, p3: Vector2): number;
22
17
  }
23
- //# sourceMappingURL=CubicBezierSegment.d.ts.map
18
+ //# sourceMappingURL=CubicBezierSegment.d.ts.map
@@ -1,11 +1,11 @@
1
- import {Vector2} from '@revideo/core';
1
+ import { Vector2 } from '@revideo/core';
2
2
  export interface CurveDrawingInfo {
3
- path: Path2D;
4
- arrowSize: number;
5
- endPoint: Vector2;
6
- endTangent: Vector2;
7
- startPoint: Vector2;
8
- startTangent: Vector2;
9
- startOffset: number;
3
+ path: Path2D;
4
+ arrowSize: number;
5
+ endPoint: Vector2;
6
+ endTangent: Vector2;
7
+ startPoint: Vector2;
8
+ startTangent: Vector2;
9
+ startOffset: number;
10
10
  }
11
- //# sourceMappingURL=CurveDrawingInfo.d.ts.map
11
+ //# sourceMappingURL=CurveDrawingInfo.d.ts.map
@@ -1,15 +1,15 @@
1
- import type {Vector2} from '@revideo/core';
1
+ import type { Vector2 } from '@revideo/core';
2
2
  export interface CurvePoint {
3
- position: Vector2;
4
- /**
5
- * @deprecated
6
- * The tangent is currently inconsistent for different types of curves and may
7
- * sometimes return the normal of the point, instead. This will be fixed in
8
- * the next major version but is kept as is for now for backwards
9
- * compatibility reasons. To always get the real tangent of the point, you can
10
- * use `normal.flipped.perpendicular`, instead.
11
- */
12
- tangent: Vector2;
13
- normal: Vector2;
3
+ position: Vector2;
4
+ /**
5
+ * @deprecated
6
+ * The tangent is currently inconsistent for different types of curves and may
7
+ * sometimes return the normal of the point, instead. This will be fixed in
8
+ * the next major version but is kept as is for now for backwards
9
+ * compatibility reasons. To always get the real tangent of the point, you can
10
+ * use `normal.flipped.perpendicular`, instead.
11
+ */
12
+ tangent: Vector2;
13
+ normal: Vector2;
14
14
  }
15
- //# sourceMappingURL=CurvePoint.d.ts.map
15
+ //# sourceMappingURL=CurvePoint.d.ts.map
@@ -1,7 +1,7 @@
1
- import {Segment} from './Segment';
1
+ import { Segment } from './Segment';
2
2
  export interface CurveProfile {
3
- arcLength: number;
4
- segments: Segment[];
5
- minSin: number;
3
+ arcLength: number;
4
+ segments: Segment[];
5
+ minSin: number;
6
6
  }
7
- //# sourceMappingURL=CurveProfile.d.ts.map
7
+ //# sourceMappingURL=CurveProfile.d.ts.map
@@ -1,2 +1,2 @@
1
1
  export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQ3VydmVQcm9maWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2xpYi9jdXJ2ZXMvQ3VydmVQcm9maWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQ3VydmVQcm9maWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2xpYi9jdXJ2ZXMvQ3VydmVQcm9maWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
@@ -1,12 +1,12 @@
1
- import {Vector2} from '@revideo/core';
1
+ import { Vector2 } from '@revideo/core';
2
2
  export type KnotAutoHandles = {
3
- start: number;
4
- end: number;
3
+ start: number;
4
+ end: number;
5
5
  };
6
6
  export interface KnotInfo {
7
- position: Vector2;
8
- startHandle: Vector2;
9
- endHandle: Vector2;
10
- auto: KnotAutoHandles;
7
+ position: Vector2;
8
+ startHandle: Vector2;
9
+ endHandle: Vector2;
10
+ auto: KnotAutoHandles;
11
11
  }
12
- //# sourceMappingURL=KnotInfo.d.ts.map
12
+ //# sourceMappingURL=KnotInfo.d.ts.map
@@ -1,21 +1,16 @@
1
- import {Vector2} from '@revideo/core';
2
- import {CurvePoint} from './CurvePoint';
3
- import {Segment} from './Segment';
1
+ import { Vector2 } from '@revideo/core';
2
+ import { CurvePoint } from './CurvePoint';
3
+ import { Segment } from './Segment';
4
4
  export declare class LineSegment extends Segment {
5
- readonly from: Vector2;
6
- readonly to: Vector2;
7
- private readonly length;
8
- private readonly vector;
9
- private readonly normal;
10
- readonly points: Vector2[];
11
- constructor(from: Vector2, to: Vector2);
12
- get arcLength(): number;
13
- draw(
14
- context: CanvasRenderingContext2D | Path2D,
15
- start?: number,
16
- end?: number,
17
- move?: boolean,
18
- ): [CurvePoint, CurvePoint];
19
- getPoint(distance: number): CurvePoint;
5
+ readonly from: Vector2;
6
+ readonly to: Vector2;
7
+ private readonly length;
8
+ private readonly vector;
9
+ private readonly normal;
10
+ readonly points: Vector2[];
11
+ constructor(from: Vector2, to: Vector2);
12
+ get arcLength(): number;
13
+ draw(context: CanvasRenderingContext2D | Path2D, start?: number, end?: number, move?: boolean): [CurvePoint, CurvePoint];
14
+ getPoint(distance: number): CurvePoint;
20
15
  }
21
- //# sourceMappingURL=LineSegment.d.ts.map
16
+ //# sourceMappingURL=LineSegment.d.ts.map
@@ -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