mol_plot_all 1.2.555 → 1.2.557

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.mjs CHANGED
@@ -2425,6 +2425,9 @@ var $;
2425
2425
  static scale(zoom) {
2426
2426
  return new $mol_style_func('scale', [zoom]);
2427
2427
  }
2428
+ static cubic_bezier(x1, y1, x2, y2) {
2429
+ return new $mol_style_func('cubic-bezier', [x1, y1, x2, y2]);
2430
+ }
2428
2431
  }
2429
2432
  $.$mol_style_func = $mol_style_func;
2430
2433
  })($ || ($ = {}));