northdata-viz 1.460.11 → 1.461.11
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/package.json +1 -1
- package/viz.esm.js +8 -9
- package/viz.esm.js.map +1 -1
- package/viz.min.js +2 -2
- package/viz.min.js.map +1 -1
package/package.json
CHANGED
package/viz.esm.js
CHANGED
|
@@ -3759,29 +3759,28 @@ function hc() {
|
|
|
3759
3759
|
return mc(dc);
|
|
3760
3760
|
}
|
|
3761
3761
|
function gc(e) {
|
|
3762
|
-
|
|
3762
|
+
return lc().x(function(t) {
|
|
3763
|
+
return e * t.x;
|
|
3764
|
+
}).y(function(t) {
|
|
3765
|
+
return e * t.y;
|
|
3766
|
+
}).curve(oc)([
|
|
3763
3767
|
{
|
|
3764
3768
|
x: 0,
|
|
3765
3769
|
y: 0
|
|
3766
3770
|
},
|
|
3767
3771
|
{
|
|
3768
3772
|
x: 1,
|
|
3769
|
-
y:
|
|
3773
|
+
y: .5
|
|
3770
3774
|
},
|
|
3771
3775
|
{
|
|
3772
3776
|
x: 1,
|
|
3773
|
-
y:
|
|
3777
|
+
y: -.5
|
|
3774
3778
|
},
|
|
3775
3779
|
{
|
|
3776
3780
|
x: 0,
|
|
3777
3781
|
y: 0
|
|
3778
3782
|
}
|
|
3779
|
-
];
|
|
3780
|
-
return lc().x(function(t) {
|
|
3781
|
-
return e * t.x;
|
|
3782
|
-
}).y(function(t) {
|
|
3783
|
-
return e * t.y;
|
|
3784
|
-
}).curve(oc)(n);
|
|
3783
|
+
]);
|
|
3785
3784
|
}
|
|
3786
3785
|
function _c(e, t, n, r, i, a, o = 0) {
|
|
3787
3786
|
e.each(function() {
|