mol_plot_all 1.2.1052 → 1.2.1054
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/node.d.ts +90 -90
- package/node.deps.json +1 -1
- package/node.js +4 -0
- package/node.js.map +1 -1
- package/node.mjs +4 -0
- package/node.test.js +4 -0
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +90 -90
- package/web.deps.json +1 -1
- package/web.js +4 -0
- package/web.js.map +1 -1
- package/web.mjs +4 -0
package/web.js
CHANGED
|
@@ -3720,8 +3720,12 @@ var $;
|
|
|
3720
3720
|
}
|
|
3721
3721
|
next.x.max = this.repos_x(next.x.max);
|
|
3722
3722
|
next.x.min = this.repos_x(next.x.min);
|
|
3723
|
+
if (next.x.max < next.x.min)
|
|
3724
|
+
next.x = next.x.inversed;
|
|
3723
3725
|
next.y.max = this.repos_y(next.y.max);
|
|
3724
3726
|
next.y.min = this.repos_y(next.y.min);
|
|
3727
|
+
if (next.y.max < next.y.min)
|
|
3728
|
+
next.y = next.y.inversed;
|
|
3725
3729
|
return next;
|
|
3726
3730
|
}
|
|
3727
3731
|
color() {
|