@sarmal/core 0.17.3 → 0.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. package/dist/auto-init.cjs +113 -89
  2. package/dist/auto-init.cjs.map +1 -1
  3. package/dist/auto-init.js +112 -88
  4. package/dist/auto-init.js.map +1 -1
  5. package/dist/curves/artemis2.cjs +10 -7
  6. package/dist/curves/artemis2.d.cts +1 -1
  7. package/dist/curves/artemis2.d.ts +1 -1
  8. package/dist/curves/artemis2.js +9 -6
  9. package/dist/curves/astroid.cjs +4 -4
  10. package/dist/curves/astroid.d.cts +1 -1
  11. package/dist/curves/astroid.d.ts +1 -1
  12. package/dist/curves/astroid.js +3 -3
  13. package/dist/curves/deltoid.cjs +4 -4
  14. package/dist/curves/deltoid.d.cts +1 -1
  15. package/dist/curves/deltoid.d.ts +1 -1
  16. package/dist/curves/deltoid.js +3 -3
  17. package/dist/curves/epicycloid3.cjs +4 -4
  18. package/dist/curves/epicycloid3.d.cts +1 -1
  19. package/dist/curves/epicycloid3.d.ts +1 -1
  20. package/dist/curves/epicycloid3.js +3 -3
  21. package/dist/curves/epitrochoid7.cjs +5 -5
  22. package/dist/curves/epitrochoid7.d.cts +1 -1
  23. package/dist/curves/epitrochoid7.d.ts +1 -1
  24. package/dist/curves/epitrochoid7.js +4 -4
  25. package/dist/curves/index.cjs +53 -40
  26. package/dist/curves/index.d.cts +29 -29
  27. package/dist/curves/index.d.ts +29 -29
  28. package/dist/curves/index.js +69 -40
  29. package/dist/curves/lame.cjs +6 -5
  30. package/dist/curves/lame.d.cts +1 -1
  31. package/dist/curves/lame.d.ts +1 -1
  32. package/dist/curves/lame.js +5 -4
  33. package/dist/curves/lissajous32.cjs +4 -4
  34. package/dist/curves/lissajous32.d.cts +1 -1
  35. package/dist/curves/lissajous32.d.ts +1 -1
  36. package/dist/curves/lissajous32.js +3 -3
  37. package/dist/curves/lissajous43.cjs +4 -4
  38. package/dist/curves/lissajous43.d.cts +1 -1
  39. package/dist/curves/lissajous43.d.ts +1 -1
  40. package/dist/curves/lissajous43.js +3 -3
  41. package/dist/curves/rose3.cjs +4 -4
  42. package/dist/curves/rose3.d.cts +1 -1
  43. package/dist/curves/rose3.d.ts +1 -1
  44. package/dist/curves/rose3.js +3 -3
  45. package/dist/curves/rose5.cjs +4 -4
  46. package/dist/curves/rose5.d.cts +1 -1
  47. package/dist/curves/rose5.d.ts +1 -1
  48. package/dist/curves/rose5.js +3 -3
  49. package/dist/curves/rose52.cjs +5 -5
  50. package/dist/curves/rose52.d.cts +1 -1
  51. package/dist/curves/rose52.d.ts +1 -1
  52. package/dist/curves/rose52.js +4 -4
  53. package/dist/curves/star.cjs +8 -5
  54. package/dist/curves/star.d.cts +1 -1
  55. package/dist/curves/star.d.ts +1 -1
  56. package/dist/curves/star.js +7 -4
  57. package/dist/curves/star4.cjs +8 -5
  58. package/dist/curves/star4.d.cts +1 -1
  59. package/dist/curves/star4.d.ts +1 -1
  60. package/dist/curves/star4.js +7 -4
  61. package/dist/curves/star7.cjs +8 -5
  62. package/dist/curves/star7.d.cts +1 -1
  63. package/dist/curves/star7.d.ts +1 -1
  64. package/dist/curves/star7.js +7 -4
  65. package/dist/index.cjs +125 -93
  66. package/dist/index.cjs.map +1 -1
  67. package/dist/index.d.cts +71 -33
  68. package/dist/index.d.ts +71 -33
  69. package/dist/index.js +143 -93
  70. package/dist/index.js.map +1 -1
  71. package/dist/types-frtEoAq6.d.cts +317 -0
  72. package/dist/types-frtEoAq6.d.ts +317 -0
  73. package/package.json +1 -1
  74. package/dist/types-BL9HhEmk.d.cts +0 -299
  75. package/dist/types-BL9HhEmk.d.ts +0 -299
@@ -1,20 +1,20 @@
1
- 'use strict';
1
+ "use strict";
2
2
 
3
3
  // src/curves/deltoid.ts
4
4
  var TWO_PI = Math.PI * 2;
5
5
  function deltoidFn(t, _time, _params) {
6
6
  return {
7
7
  x: 2 * Math.cos(t) + Math.cos(2 * t),
8
- y: 2 * Math.sin(t) - Math.sin(2 * t)
8
+ y: 2 * Math.sin(t) - Math.sin(2 * t),
9
9
  };
10
10
  }
11
11
  var deltoid = {
12
12
  name: "Deltoid",
13
13
  fn: deltoidFn,
14
14
  period: TWO_PI,
15
- speed: 0.9
15
+ speed: 0.9,
16
16
  };
17
17
 
18
18
  exports.deltoid = deltoid;
19
19
  //# sourceMappingURL=deltoid.cjs.map
20
- //# sourceMappingURL=deltoid.cjs.map
20
+ //# sourceMappingURL=deltoid.cjs.map
@@ -1,4 +1,4 @@
1
- import { C as CurveDef } from '../types-BL9HhEmk.cjs';
1
+ import { C as CurveDef } from "../types-frtEoAq6.cjs";
2
2
 
3
3
  /**
4
4
  * Deltoid curve - a 3-cusped hypocycloid
@@ -1,4 +1,4 @@
1
- import { C as CurveDef } from '../types-BL9HhEmk.js';
1
+ import { C as CurveDef } from "../types-frtEoAq6.js";
2
2
 
3
3
  /**
4
4
  * Deltoid curve - a 3-cusped hypocycloid
@@ -3,16 +3,16 @@ var TWO_PI = Math.PI * 2;
3
3
  function deltoidFn(t, _time, _params) {
4
4
  return {
5
5
  x: 2 * Math.cos(t) + Math.cos(2 * t),
6
- y: 2 * Math.sin(t) - Math.sin(2 * t)
6
+ y: 2 * Math.sin(t) - Math.sin(2 * t),
7
7
  };
8
8
  }
9
9
  var deltoid = {
10
10
  name: "Deltoid",
11
11
  fn: deltoidFn,
12
12
  period: TWO_PI,
13
- speed: 0.9
13
+ speed: 0.9,
14
14
  };
15
15
 
16
16
  export { deltoid };
17
17
  //# sourceMappingURL=deltoid.js.map
18
- //# sourceMappingURL=deltoid.js.map
18
+ //# sourceMappingURL=deltoid.js.map
@@ -1,20 +1,20 @@
1
- 'use strict';
1
+ "use strict";
2
2
 
3
3
  // src/curves/epicycloid3.ts
4
4
  var TWO_PI = Math.PI * 2;
5
5
  function epicycloid3Fn(t, _time, _params) {
6
6
  return {
7
7
  x: 4 * Math.cos(t) - Math.cos(4 * t),
8
- y: 4 * Math.sin(t) - Math.sin(4 * t)
8
+ y: 4 * Math.sin(t) - Math.sin(4 * t),
9
9
  };
10
10
  }
11
11
  var epicycloid3 = {
12
12
  name: "Epicycloid (n=3)",
13
13
  fn: epicycloid3Fn,
14
14
  period: TWO_PI,
15
- speed: 0.75
15
+ speed: 0.75,
16
16
  };
17
17
 
18
18
  exports.epicycloid3 = epicycloid3;
19
19
  //# sourceMappingURL=epicycloid3.cjs.map
20
- //# sourceMappingURL=epicycloid3.cjs.map
20
+ //# sourceMappingURL=epicycloid3.cjs.map
@@ -1,4 +1,4 @@
1
- import { C as CurveDef } from '../types-BL9HhEmk.cjs';
1
+ import { C as CurveDef } from "../types-frtEoAq6.cjs";
2
2
 
3
3
  /**
4
4
  * Epicycloid with 3 cusps
@@ -1,4 +1,4 @@
1
- import { C as CurveDef } from '../types-BL9HhEmk.js';
1
+ import { C as CurveDef } from "../types-frtEoAq6.js";
2
2
 
3
3
  /**
4
4
  * Epicycloid with 3 cusps
@@ -3,16 +3,16 @@ var TWO_PI = Math.PI * 2;
3
3
  function epicycloid3Fn(t, _time, _params) {
4
4
  return {
5
5
  x: 4 * Math.cos(t) - Math.cos(4 * t),
6
- y: 4 * Math.sin(t) - Math.sin(4 * t)
6
+ y: 4 * Math.sin(t) - Math.sin(4 * t),
7
7
  };
8
8
  }
9
9
  var epicycloid3 = {
10
10
  name: "Epicycloid (n=3)",
11
11
  fn: epicycloid3Fn,
12
12
  period: TWO_PI,
13
- speed: 0.75
13
+ speed: 0.75,
14
14
  };
15
15
 
16
16
  export { epicycloid3 };
17
17
  //# sourceMappingURL=epicycloid3.js.map
18
- //# sourceMappingURL=epicycloid3.js.map
18
+ //# sourceMappingURL=epicycloid3.js.map
@@ -1,4 +1,4 @@
1
- 'use strict';
1
+ "use strict";
2
2
 
3
3
  // src/curves/epitrochoid7.ts
4
4
  var TWO_PI = Math.PI * 2;
@@ -6,14 +6,14 @@ function epitrochoid7Fn(t, _time, _params) {
6
6
  const d = 1 + 0.55 * Math.sin(t * 0.5);
7
7
  return {
8
8
  x: 7 * Math.cos(t) - d * Math.cos(7 * t),
9
- y: 7 * Math.sin(t) - d * Math.sin(7 * t)
9
+ y: 7 * Math.sin(t) - d * Math.sin(7 * t),
10
10
  };
11
11
  }
12
12
  function epitrochoid7SkeletonFn(t) {
13
13
  const d = 1.275;
14
14
  return {
15
15
  x: 7 * Math.cos(t) - d * Math.cos(7 * t),
16
- y: 7 * Math.sin(t) - d * Math.sin(7 * t)
16
+ y: 7 * Math.sin(t) - d * Math.sin(7 * t),
17
17
  };
18
18
  }
19
19
  var epitrochoid7 = {
@@ -21,9 +21,9 @@ var epitrochoid7 = {
21
21
  fn: epitrochoid7Fn,
22
22
  period: TWO_PI,
23
23
  speed: 1.4,
24
- skeletonFn: epitrochoid7SkeletonFn
24
+ skeletonFn: epitrochoid7SkeletonFn,
25
25
  };
26
26
 
27
27
  exports.epitrochoid7 = epitrochoid7;
28
28
  //# sourceMappingURL=epitrochoid7.cjs.map
29
- //# sourceMappingURL=epitrochoid7.cjs.map
29
+ //# sourceMappingURL=epitrochoid7.cjs.map
@@ -1,4 +1,4 @@
1
- import { C as CurveDef } from '../types-BL9HhEmk.cjs';
1
+ import { C as CurveDef } from "../types-frtEoAq6.cjs";
2
2
 
3
3
  /**
4
4
  * Epitrochoid with 7 lobes and dynamic variation
@@ -1,4 +1,4 @@
1
- import { C as CurveDef } from '../types-BL9HhEmk.js';
1
+ import { C as CurveDef } from "../types-frtEoAq6.js";
2
2
 
3
3
  /**
4
4
  * Epitrochoid with 7 lobes and dynamic variation
@@ -4,14 +4,14 @@ function epitrochoid7Fn(t, _time, _params) {
4
4
  const d = 1 + 0.55 * Math.sin(t * 0.5);
5
5
  return {
6
6
  x: 7 * Math.cos(t) - d * Math.cos(7 * t),
7
- y: 7 * Math.sin(t) - d * Math.sin(7 * t)
7
+ y: 7 * Math.sin(t) - d * Math.sin(7 * t),
8
8
  };
9
9
  }
10
10
  function epitrochoid7SkeletonFn(t) {
11
11
  const d = 1.275;
12
12
  return {
13
13
  x: 7 * Math.cos(t) - d * Math.cos(7 * t),
14
- y: 7 * Math.sin(t) - d * Math.sin(7 * t)
14
+ y: 7 * Math.sin(t) - d * Math.sin(7 * t),
15
15
  };
16
16
  }
17
17
  var epitrochoid7 = {
@@ -19,9 +19,9 @@ var epitrochoid7 = {
19
19
  fn: epitrochoid7Fn,
20
20
  period: TWO_PI,
21
21
  speed: 1.4,
22
- skeletonFn: epitrochoid7SkeletonFn
22
+ skeletonFn: epitrochoid7SkeletonFn,
23
23
  };
24
24
 
25
25
  export { epitrochoid7 };
26
26
  //# sourceMappingURL=epitrochoid7.js.map
27
- //# sourceMappingURL=epitrochoid7.js.map
27
+ //# sourceMappingURL=epitrochoid7.js.map
@@ -1,21 +1,24 @@
1
- 'use strict';
1
+ "use strict";
2
2
 
3
3
  // src/curves/artemis2.ts
4
4
  var TWO_PI = Math.PI * 2;
5
5
  function artemis2Fn(t, _time, _params) {
6
- const a = 0.35, b = 0.15, ox = 0.175;
7
- const s = Math.sin(t), c = Math.cos(t);
6
+ const a = 0.35,
7
+ b = 0.15,
8
+ ox = 0.175;
9
+ const s = Math.sin(t),
10
+ c = Math.cos(t);
8
11
  const denom = 1 + s * s;
9
12
  return {
10
- x: c * (1 + a * c) / denom - ox,
11
- y: s * c * (1 + b * c) / denom
13
+ x: (c * (1 + a * c)) / denom - ox,
14
+ y: (s * c * (1 + b * c)) / denom,
12
15
  };
13
16
  }
14
17
  var artemis2 = {
15
18
  name: "Artemis II",
16
19
  fn: artemis2Fn,
17
20
  period: TWO_PI,
18
- speed: 0.7
21
+ speed: 0.7,
19
22
  };
20
23
 
21
24
  // src/curves/astroid.ts
@@ -25,14 +28,14 @@ function astroidFn(t, _time, _params) {
25
28
  const s = Math.sin(t);
26
29
  return {
27
30
  x: c * c * c,
28
- y: s * s * s
31
+ y: s * s * s,
29
32
  };
30
33
  }
31
34
  var astroid = {
32
35
  name: "Astroid",
33
36
  fn: astroidFn,
34
37
  period: TWO_PI2,
35
- speed: 1.1
38
+ speed: 1.1,
36
39
  };
37
40
 
38
41
  // src/curves/deltoid.ts
@@ -40,14 +43,14 @@ var TWO_PI3 = Math.PI * 2;
40
43
  function deltoidFn(t, _time, _params) {
41
44
  return {
42
45
  x: 2 * Math.cos(t) + Math.cos(2 * t),
43
- y: 2 * Math.sin(t) - Math.sin(2 * t)
46
+ y: 2 * Math.sin(t) - Math.sin(2 * t),
44
47
  };
45
48
  }
46
49
  var deltoid = {
47
50
  name: "Deltoid",
48
51
  fn: deltoidFn,
49
52
  period: TWO_PI3,
50
- speed: 0.9
53
+ speed: 0.9,
51
54
  };
52
55
 
53
56
  // src/curves/epicycloid3.ts
@@ -55,14 +58,14 @@ var TWO_PI4 = Math.PI * 2;
55
58
  function epicycloid3Fn(t, _time, _params) {
56
59
  return {
57
60
  x: 4 * Math.cos(t) - Math.cos(4 * t),
58
- y: 4 * Math.sin(t) - Math.sin(4 * t)
61
+ y: 4 * Math.sin(t) - Math.sin(4 * t),
59
62
  };
60
63
  }
61
64
  var epicycloid3 = {
62
65
  name: "Epicycloid (n=3)",
63
66
  fn: epicycloid3Fn,
64
67
  period: TWO_PI4,
65
- speed: 0.75
68
+ speed: 0.75,
66
69
  };
67
70
 
68
71
  // src/curves/epitrochoid7.ts
@@ -71,14 +74,14 @@ function epitrochoid7Fn(t, _time, _params) {
71
74
  const d = 1 + 0.55 * Math.sin(t * 0.5);
72
75
  return {
73
76
  x: 7 * Math.cos(t) - d * Math.cos(7 * t),
74
- y: 7 * Math.sin(t) - d * Math.sin(7 * t)
77
+ y: 7 * Math.sin(t) - d * Math.sin(7 * t),
75
78
  };
76
79
  }
77
80
  function epitrochoid7SkeletonFn(t) {
78
81
  const d = 1.275;
79
82
  return {
80
83
  x: 7 * Math.cos(t) - d * Math.cos(7 * t),
81
- y: 7 * Math.sin(t) - d * Math.sin(7 * t)
84
+ y: 7 * Math.sin(t) - d * Math.sin(7 * t),
82
85
  };
83
86
  }
84
87
  var epitrochoid7 = {
@@ -86,7 +89,7 @@ var epitrochoid7 = {
86
89
  fn: epitrochoid7Fn,
87
90
  period: TWO_PI5,
88
91
  speed: 1.4,
89
- skeletonFn: epitrochoid7SkeletonFn
92
+ skeletonFn: epitrochoid7SkeletonFn,
90
93
  };
91
94
 
92
95
  // src/curves/lissajous32.ts
@@ -95,7 +98,7 @@ function lissajous32Fn(t, time, _params) {
95
98
  const phi = time * 0.45;
96
99
  return {
97
100
  x: Math.sin(3 * t + phi),
98
- y: Math.sin(2 * t)
101
+ y: Math.sin(2 * t),
99
102
  };
100
103
  }
101
104
  var lissajous32 = {
@@ -103,7 +106,7 @@ var lissajous32 = {
103
106
  fn: lissajous32Fn,
104
107
  period: TWO_PI6,
105
108
  speed: 2,
106
- skeleton: "live"
109
+ skeleton: "live",
107
110
  };
108
111
 
109
112
  // src/curves/lissajous43.ts
@@ -112,7 +115,7 @@ function lissajous43Fn(t, time, _params) {
112
115
  const phi = time * 0.38;
113
116
  return {
114
117
  x: Math.sin(4 * t + phi),
115
- y: Math.sin(3 * t)
118
+ y: Math.sin(3 * t),
116
119
  };
117
120
  }
118
121
  var lissajous43 = {
@@ -120,17 +123,18 @@ var lissajous43 = {
120
123
  fn: lissajous43Fn,
121
124
  period: TWO_PI7,
122
125
  speed: 1.8,
123
- skeleton: "live"
126
+ skeleton: "live",
124
127
  };
125
128
 
126
129
  // src/curves/lame.ts
127
130
  var TWO_PI8 = Math.PI * 2;
128
131
  function lameFn(t, time, _params) {
129
132
  const p = 1.75 + 1.25 * Math.sin(time * 0.48);
130
- const c = Math.cos(t), s = Math.sin(t);
133
+ const c = Math.cos(t),
134
+ s = Math.sin(t);
131
135
  return {
132
136
  x: Math.sign(c) * Math.pow(Math.abs(c), p),
133
- y: Math.sign(s) * Math.pow(Math.abs(s), p)
137
+ y: Math.sign(s) * Math.pow(Math.abs(s), p),
134
138
  };
135
139
  }
136
140
  var lame = {
@@ -138,7 +142,7 @@ var lame = {
138
142
  fn: lameFn,
139
143
  period: TWO_PI8,
140
144
  speed: 1,
141
- skeleton: "live"
145
+ skeleton: "live",
142
146
  };
143
147
 
144
148
  // src/curves/rose3.ts
@@ -147,14 +151,14 @@ function rose3Fn(t, _time, _params) {
147
151
  const r = Math.cos(3 * t);
148
152
  return {
149
153
  x: r * Math.cos(t),
150
- y: r * Math.sin(t)
154
+ y: r * Math.sin(t),
151
155
  };
152
156
  }
153
157
  var rose3 = {
154
158
  name: "Rose (n=3)",
155
159
  fn: rose3Fn,
156
160
  period: TWO_PI9,
157
- speed: 1.15
161
+ speed: 1.15,
158
162
  };
159
163
 
160
164
  // src/curves/rose5.ts
@@ -163,78 +167,87 @@ function rose5Fn(t, _time, _params) {
163
167
  const r = Math.cos(5 * t);
164
168
  return {
165
169
  x: r * Math.cos(t),
166
- y: r * Math.sin(t)
170
+ y: r * Math.sin(t),
167
171
  };
168
172
  }
169
173
  var rose5 = {
170
174
  name: "Rose (n=5)",
171
175
  fn: rose5Fn,
172
176
  period: TWO_PI10,
173
- speed: 1
177
+ speed: 1,
174
178
  };
175
179
 
176
180
  // src/curves/rose52.ts
177
181
  var FOUR_PI = Math.PI * 4;
178
182
  function rose52Fn(t, _time, _params) {
179
- const r = Math.cos(5 / 2 * t);
183
+ const r = Math.cos((5 / 2) * t);
180
184
  return {
181
185
  x: r * Math.cos(t),
182
- y: r * Math.sin(t)
186
+ y: r * Math.sin(t),
183
187
  };
184
188
  }
185
189
  var rose52 = {
186
190
  name: "Rose (n=5/2)",
187
191
  fn: rose52Fn,
188
192
  period: FOUR_PI,
189
- speed: 0.8
193
+ speed: 0.8,
190
194
  };
191
195
 
192
196
  // src/curves/star.ts
193
197
  var TWO_PI11 = Math.PI * 2;
194
198
  function starFn(t, _time, _params) {
195
- const r = Math.abs(Math.cos(5 / 2 * t)) + 0.35 * Math.abs(Math.cos(15 / 2 * t)) + 0.15 * Math.abs(Math.cos(25 / 2 * t));
199
+ const r =
200
+ Math.abs(Math.cos((5 / 2) * t)) +
201
+ 0.35 * Math.abs(Math.cos((15 / 2) * t)) +
202
+ 0.15 * Math.abs(Math.cos((25 / 2) * t));
196
203
  return {
197
204
  x: r * Math.cos(t),
198
- y: r * Math.sin(t)
205
+ y: r * Math.sin(t),
199
206
  };
200
207
  }
201
208
  var star = {
202
209
  name: "Star",
203
210
  fn: starFn,
204
211
  period: TWO_PI11,
205
- speed: 1
212
+ speed: 1,
206
213
  };
207
214
 
208
215
  // src/curves/star4.ts
209
216
  var TWO_PI12 = Math.PI * 2;
210
217
  function star4Fn(t, _time, _params) {
211
- const r = Math.abs(Math.cos(2 * t)) + 0.35 * Math.abs(Math.cos(6 * t)) + 0.15 * Math.abs(Math.cos(10 * t));
218
+ const r =
219
+ Math.abs(Math.cos(2 * t)) +
220
+ 0.35 * Math.abs(Math.cos(6 * t)) +
221
+ 0.15 * Math.abs(Math.cos(10 * t));
212
222
  return {
213
223
  x: r * Math.cos(t),
214
- y: r * Math.sin(t)
224
+ y: r * Math.sin(t),
215
225
  };
216
226
  }
217
227
  var star4 = {
218
228
  name: "Star (4-arm)",
219
229
  fn: star4Fn,
220
230
  period: TWO_PI12,
221
- speed: 1
231
+ speed: 1,
222
232
  };
223
233
 
224
234
  // src/curves/star7.ts
225
235
  var TWO_PI13 = Math.PI * 2;
226
236
  function star7Fn(t, _time, _params) {
227
- const r = Math.abs(Math.cos(7 / 2 * t)) + 0.35 * Math.abs(Math.cos(21 / 2 * t)) + 0.15 * Math.abs(Math.cos(35 / 2 * t));
237
+ const r =
238
+ Math.abs(Math.cos((7 / 2) * t)) +
239
+ 0.35 * Math.abs(Math.cos((21 / 2) * t)) +
240
+ 0.15 * Math.abs(Math.cos((35 / 2) * t));
228
241
  return {
229
242
  x: r * Math.cos(t),
230
- y: r * Math.sin(t)
243
+ y: r * Math.sin(t),
231
244
  };
232
245
  }
233
246
  var star7 = {
234
247
  name: "Star (7-arm)",
235
248
  fn: star7Fn,
236
249
  period: TWO_PI13,
237
- speed: 1
250
+ speed: 1,
238
251
  };
239
252
 
240
253
  // src/curves/index.ts
@@ -252,7 +265,7 @@ var curves = {
252
265
  lissajous32,
253
266
  lissajous43,
254
267
  epicycloid3,
255
- lame
268
+ lame,
256
269
  };
257
270
 
258
271
  exports.artemis2 = artemis2;
@@ -271,4 +284,4 @@ exports.star = star;
271
284
  exports.star4 = star4;
272
285
  exports.star7 = star7;
273
286
  //# sourceMappingURL=index.cjs.map
274
- //# sourceMappingURL=index.cjs.map
287
+ //# sourceMappingURL=index.cjs.map
@@ -1,38 +1,38 @@
1
- import { C as CurveDef } from '../types-BL9HhEmk.cjs';
2
- export { artemis2 } from './artemis2.cjs';
3
- export { astroid } from './astroid.cjs';
4
- export { deltoid } from './deltoid.cjs';
5
- export { epicycloid3 } from './epicycloid3.cjs';
6
- export { epitrochoid7 } from './epitrochoid7.cjs';
7
- export { lissajous32 } from './lissajous32.cjs';
8
- export { lissajous43 } from './lissajous43.cjs';
9
- export { lame } from './lame.cjs';
10
- export { rose3 } from './rose3.cjs';
11
- export { rose5 } from './rose5.cjs';
12
- export { rose52 } from './rose52.cjs';
13
- export { star } from './star.cjs';
14
- export { star4 } from './star4.cjs';
15
- export { star7 } from './star7.cjs';
1
+ import { C as CurveDef } from "../types-frtEoAq6.cjs";
2
+ export { artemis2 } from "./artemis2.cjs";
3
+ export { astroid } from "./astroid.cjs";
4
+ export { deltoid } from "./deltoid.cjs";
5
+ export { epicycloid3 } from "./epicycloid3.cjs";
6
+ export { epitrochoid7 } from "./epitrochoid7.cjs";
7
+ export { lissajous32 } from "./lissajous32.cjs";
8
+ export { lissajous43 } from "./lissajous43.cjs";
9
+ export { lame } from "./lame.cjs";
10
+ export { rose3 } from "./rose3.cjs";
11
+ export { rose5 } from "./rose5.cjs";
12
+ export { rose52 } from "./rose52.cjs";
13
+ export { star } from "./star.cjs";
14
+ export { star4 } from "./star4.cjs";
15
+ export { star7 } from "./star7.cjs";
16
16
 
17
17
  /**
18
18
  * Collection of all built-in sarmal curves
19
19
  * Import individual curves for better tree-shaking
20
20
  */
21
21
  declare const curves: {
22
- readonly artemis2: CurveDef;
23
- readonly epitrochoid7: CurveDef;
24
- readonly astroid: CurveDef;
25
- readonly deltoid: CurveDef;
26
- readonly rose3: CurveDef;
27
- readonly rose5: CurveDef;
28
- readonly rose52: CurveDef;
29
- readonly star: CurveDef;
30
- readonly star4: CurveDef;
31
- readonly star7: CurveDef;
32
- readonly lissajous32: CurveDef;
33
- readonly lissajous43: CurveDef;
34
- readonly epicycloid3: CurveDef;
35
- readonly lame: CurveDef;
22
+ readonly artemis2: CurveDef;
23
+ readonly epitrochoid7: CurveDef;
24
+ readonly astroid: CurveDef;
25
+ readonly deltoid: CurveDef;
26
+ readonly rose3: CurveDef;
27
+ readonly rose5: CurveDef;
28
+ readonly rose52: CurveDef;
29
+ readonly star: CurveDef;
30
+ readonly star4: CurveDef;
31
+ readonly star7: CurveDef;
32
+ readonly lissajous32: CurveDef;
33
+ readonly lissajous43: CurveDef;
34
+ readonly epicycloid3: CurveDef;
35
+ readonly lame: CurveDef;
36
36
  };
37
37
  type CurveName = keyof typeof curves;
38
38
 
@@ -1,38 +1,38 @@
1
- import { C as CurveDef } from '../types-BL9HhEmk.js';
2
- export { artemis2 } from './artemis2.js';
3
- export { astroid } from './astroid.js';
4
- export { deltoid } from './deltoid.js';
5
- export { epicycloid3 } from './epicycloid3.js';
6
- export { epitrochoid7 } from './epitrochoid7.js';
7
- export { lissajous32 } from './lissajous32.js';
8
- export { lissajous43 } from './lissajous43.js';
9
- export { lame } from './lame.js';
10
- export { rose3 } from './rose3.js';
11
- export { rose5 } from './rose5.js';
12
- export { rose52 } from './rose52.js';
13
- export { star } from './star.js';
14
- export { star4 } from './star4.js';
15
- export { star7 } from './star7.js';
1
+ import { C as CurveDef } from "../types-frtEoAq6.js";
2
+ export { artemis2 } from "./artemis2.js";
3
+ export { astroid } from "./astroid.js";
4
+ export { deltoid } from "./deltoid.js";
5
+ export { epicycloid3 } from "./epicycloid3.js";
6
+ export { epitrochoid7 } from "./epitrochoid7.js";
7
+ export { lissajous32 } from "./lissajous32.js";
8
+ export { lissajous43 } from "./lissajous43.js";
9
+ export { lame } from "./lame.js";
10
+ export { rose3 } from "./rose3.js";
11
+ export { rose5 } from "./rose5.js";
12
+ export { rose52 } from "./rose52.js";
13
+ export { star } from "./star.js";
14
+ export { star4 } from "./star4.js";
15
+ export { star7 } from "./star7.js";
16
16
 
17
17
  /**
18
18
  * Collection of all built-in sarmal curves
19
19
  * Import individual curves for better tree-shaking
20
20
  */
21
21
  declare const curves: {
22
- readonly artemis2: CurveDef;
23
- readonly epitrochoid7: CurveDef;
24
- readonly astroid: CurveDef;
25
- readonly deltoid: CurveDef;
26
- readonly rose3: CurveDef;
27
- readonly rose5: CurveDef;
28
- readonly rose52: CurveDef;
29
- readonly star: CurveDef;
30
- readonly star4: CurveDef;
31
- readonly star7: CurveDef;
32
- readonly lissajous32: CurveDef;
33
- readonly lissajous43: CurveDef;
34
- readonly epicycloid3: CurveDef;
35
- readonly lame: CurveDef;
22
+ readonly artemis2: CurveDef;
23
+ readonly epitrochoid7: CurveDef;
24
+ readonly astroid: CurveDef;
25
+ readonly deltoid: CurveDef;
26
+ readonly rose3: CurveDef;
27
+ readonly rose5: CurveDef;
28
+ readonly rose52: CurveDef;
29
+ readonly star: CurveDef;
30
+ readonly star4: CurveDef;
31
+ readonly star7: CurveDef;
32
+ readonly lissajous32: CurveDef;
33
+ readonly lissajous43: CurveDef;
34
+ readonly epicycloid3: CurveDef;
35
+ readonly lame: CurveDef;
36
36
  };
37
37
  type CurveName = keyof typeof curves;
38
38